summaryrefslogtreecommitdiff
path: root/nixos/flake.nix
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-07-24 23:36:49 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-07-24 23:36:49 +0700
commit9f9921e9d32128f93b7237d51ce0af821120fc11 (patch)
tree58a46923be8859d21fa662d60f1e4991da0a4b0f /nixos/flake.nix
parent395c08d0a334cdffbcc370384bee67f19f964399 (diff)
frst
Diffstat (limited to 'nixos/flake.nix')
-rw-r--r--nixos/flake.nix26
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
+ ];
+ };
+ };
+}