summaryrefslogtreecommitdiff
path: root/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 /flake.nix
parent395c08d0a334cdffbcc370384bee67f19f964399 (diff)
frst
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/flake.nix b/flake.nix
deleted file mode 100644
index f5f5b35..0000000
--- a/flake.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- 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
- ];
- };
- };
-}