diff options
author | Franck Cuny <franck@fcuny.net> | 2024-12-08 14:59:03 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-12-08 15:36:32 -0800 |
commit | 48ea2837adff1483d6d5e8dd6f65611914ddda88 (patch) | |
tree | 8adb236371b1b3db63d450bb98b583b5d0f67cc6 /nix/hosts/common/nix.nix | |
parent | refactor overall configuration (diff) | |
download | world-48ea2837adff1483d6d5e8dd6f65611914ddda88.tar.gz |
more refactoring
Diffstat (limited to '')
-rw-r--r-- | nix/hosts/common/nix.nix | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/nix/hosts/common/nix.nix b/nix/hosts/common/nix.nix deleted file mode 100644 index 2ef6b48..0000000 --- a/nix/hosts/common/nix.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ pkgs, ... }: { - nix = { - package = pkgs.nixVersions.stable; - - gc = { - user = "root"; - automatic = true; - interval = [{ - Hour = 7; - Minute = 0; - Weekday = 0; - }]; - options = "--delete-older-than 7d"; - }; - - settings = { - trusted-users = [ "@admin" "fcuny" ]; - experimental-features = [ "nix-command" "flakes" ]; - }; - }; - - nixpkgs.config = { - allowUnfree = true; - permittedInsecurePackages = [ - "nix-2.16.2" # FIXME https://github.com/nix-community/nixd/issues/357 - ]; - }; -} |