diff options
| author | seraphim <18ycm9tx@anonaddy.me> | 2026-07-24 20:57:33 +0700 |
|---|---|---|
| committer | seraphim <18ycm9tx@anonaddy.me> | 2026-07-24 20:57:33 +0700 |
| commit | 395c08d0a334cdffbcc370384bee67f19f964399 (patch) | |
| tree | d57cdf13385785aaf068d4f8408fe6cc2f095999 /flake.nix | |
frst
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..f5f5b35 --- /dev/null +++ b/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 + ]; + }; + }; +} |
