diff options
| author | seraphim <18ycm9tx@anonaddy.me> | 2026-07-29 22:09:26 +0700 |
|---|---|---|
| committer | seraphim <18ycm9tx@anonaddy.me> | 2026-07-29 22:09:26 +0700 |
| commit | ab1d8b8a3e876d37e44c4d22a93c96a32fd01763 (patch) | |
| tree | d72560dd0032f4341940a44613d02291b78b4a5e /backup-nix/flake.nix | |
| parent | 73ddb338cd7542f9569a9ab5cb0481b4f0636710 (diff) | |
.
Diffstat (limited to 'backup-nix/flake.nix')
| -rw-r--r-- | backup-nix/flake.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/backup-nix/flake.nix b/backup-nix/flake.nix new file mode 100644 index 0000000..f5f5b35 --- /dev/null +++ b/backup-nix/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 + ]; + }; + }; +} |
