aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
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