diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..f0591e5 --- /dev/null +++ b/flake.nix @@ -0,0 +1,12 @@ +{ + inputs.nixpkgs.url = "github:NixOS/nixpkgs"; + inputs.home-manager.url = "github:nix-community/home-manager"; + + outputs = { self, nixpkgs, ... }@attrs: { + nixosConfigurations.fnord = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = attrs; + modules = [ ./configuration.nix ]; + }; + }; +} \ No newline at end of file