diff options
| author | Skullheadx <admonty1@protonmail.com> | 2026-04-25 21:34:57 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2026-04-25 21:34:57 -0400 |
| commit | 4149624025935711e23e291e917b43d1e8f5f22b (patch) | |
| tree | a1f2b4d74351e1dc15efe04879bbcc7182d89c66 /flake.nix | |
| parent | remove all (diff) | |
| download | nixos-4149624025935711e23e291e917b43d1e8f5f22b.tar.gz nixos-4149624025935711e23e291e917b43d1e8f5f22b.tar.bz2 nixos-4149624025935711e23e291e917b43d1e8f5f22b.zip | |
x11 setup
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..392ffc7 --- /dev/null +++ b/flake.nix @@ -0,0 +1,26 @@ +{ + description = "Based and Minimal Flake"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; + hjem = { + url = "github:feel-co/hjem"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + + }; + outputs = + { + self, + nixpkgs, + hjem, + }@inputs: + { + nixosConfigurations.nepsis = nixpkgs.lib.nixosSystem { + modules = [ + hjem.nixosModules.default + ./configuration.nix + ]; + }; + }; +} |
