diff options
Diffstat (limited to 'flake.nix')
| -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 + ]; + }; + }; +} |
