summaryrefslogtreecommitdiff
path: root/modules/nix-settings.nix
diff options
context:
space:
mode:
authorJasper Ras <jaspert.ras@gmail.com>2024-11-13 22:33:37 +0100
committerJasper Ras <jaspert.ras@gmail.com>2024-11-13 22:39:43 +0100
commitf1d8afcc156b14ce44dde407bd76661bdc821e03 (patch)
treeba0b24b0c869d5c68ca8f1e5acb29d325979837f /modules/nix-settings.nix
parent6c181cdefe9d8d7b2b6bd47d97c7c6768b7c2ae0 (diff)
Use flake-utils-plus and set-up multiple hosts
Diffstat (limited to 'modules/nix-settings.nix')
-rw-r--r--modules/nix-settings.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/nix-settings.nix b/modules/nix-settings.nix
new file mode 100644
index 0000000..8db69ad
--- /dev/null
+++ b/modules/nix-settings.nix
@@ -0,0 +1,8 @@
+{ ... }:
+{
+ nix.settings = {
+ experimental-features = [ "nix-command" "flakes" ];
+ substituters = ["https://hyprland.cachix.org"];
+ trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
+ };
+}