aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/ni/nixconfig/module.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/by-name/ni/nixconfig/module.nix')
-rw-r--r--modules/by-name/ni/nixconfig/module.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/by-name/ni/nixconfig/module.nix b/modules/by-name/ni/nixconfig/module.nix
deleted file mode 100644
index a5bf950..0000000
--- a/modules/by-name/ni/nixconfig/module.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.vhack.nixconfig;
-in {
- options.vhack.nixconfig = {
- enable = lib.mkEnableOption "sophisticated nix settings";
- };
- config = lib.mkIf cfg.enable {
- nix = {
- # gc = {
- # automatic = true;
- # dates = "daily";
- # options = "--delete-older-than 3";
- # };
- settings = {
- auto-optimise-store = true;
- experimental-features = ["nix-command" "flakes"];
- trusted-users = [
- "root"
- "@wheel"
- ];
- };
- };
- };
-}