aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorAkshay <[email protected]>2024-03-28 21:42:26 +0000
committerAkshay <[email protected]>2024-03-28 21:42:26 +0000
commit76e49249f3cec7a66b7c6f1263292d3966e6b7b7 (patch)
tree5eace807de4b4cd6b0313603c0c552260714a364 /flake.nix
parentf35cb2c69836eff47541341b26334559ed851414 (diff)
add laurel
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 7a397a2..ff479f9 100644
--- a/flake.nix
+++ b/flake.nix
@@ -112,6 +112,18 @@
112 ]; 112 ];
113 }; 113 };
114 114
115 laurel = nixpkgs.lib.nixosSystem {
116 system = "x86_64-linux";
117 modules = [
118 ({ config = { nix.registry.nixpkgs.flake = nixpkgs; }; })
119 {
120 imports = [ ./hosts/laurel/configuration.nix ];
121 _module.args.self = self;
122 }
123 flaresolverr.nixosModules.default
124 ];
125 };
126
115 }; 127 };
116 }; 128 };
117 129