diff options
Diffstat (limited to 'nixos/flake.nix')
| -rw-r--r-- | nixos/flake.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/nixos/flake.nix b/nixos/flake.nix new file mode 100644 index 0000000..f5f5b35 --- /dev/null +++ b/nixos/flake.nix @@ -0,0 +1,26 @@ +{ + description = "Noctalia shell conf"; + + inputs = { + # Main tree + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + + # Noctalia v5 + noctalia.url = "github:noctalia-dev/noctalia"; + noctalia-greeter = { + url = "github:noctalia-dev/noctalia-greeter"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + + }; + + outputs = { self, nixpkgs, noctalia, ... }@inputs: { + nixosConfigurations.opus = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { inherit inputs; }; + modules = [ + ./configuration.nix + ]; + }; + }; +} |
