diff options
| author | sinanmohd <sinan@sinanmohd.com> | 2025-09-06 09:31:20 +0530 |
|---|---|---|
| committer | sinanmohd <sinan@sinanmohd.com> | 2025-09-06 11:18:19 +0530 |
| commit | 6bc9fe42a2cadc771c178f289207b914e8ec37a1 (patch) | |
| tree | 82ef3a38b23e972c3df437d86ecfafeb3bd7831d /os/common/modules/nix.nix | |
| parent | ce93b0b2c89b60fae4d4bcee67aa243edda1f893 (diff) | |
fix(os/common/nix): nix develop interactive shell
Diffstat (limited to 'os/common/modules/nix.nix')
| -rw-r--r-- | os/common/modules/nix.nix | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/os/common/modules/nix.nix b/os/common/modules/nix.nix deleted file mode 100644 index 711ead4..0000000 --- a/os/common/modules/nix.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ config, ... }: -let - user = config.global.userdata.name; -in -{ - nix = { - gc = { - automatic = true; - dates = "weekly"; - options = "--delete-older-than 30d"; - }; - - settings = { - auto-optimise-store = true; - use-xdg-base-directories = true; - trusted-users = [ user ]; - - experimental-features = [ - "flakes" - "nix-command" - ]; - - substituters = [ - "https://nixbin.sinanmohd.com" - "https://nix-community.cachix.org" - ]; - trusted-public-keys = [ - "nixbin.sinanmohd.com:dXV3KDPVrm+cGJ2M1ZmTeQJqFGaEapqiVoWHgYDh03k=" - "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" - ]; - }; - }; -} |
