nixfleet/modules/nix/default.nix
Andrea Ciceri 816bd8fe6f
Things
- `wireguard` for `hs`
- gnome keyring for VSCode to make Copilot work
- uninstalled local `Hydra` on `pc`
- VSCode -> VSCodeFHS
- Emacs
  - typescript
  - solidity
  - envrc mode
2022-07-30 11:34:26 +02:00

24 lines
350 B
Nix

{
config,
lib,
pkgs,
...
}: {
nix = {
settings = {
auto-optimise-store = true;
};
extraOptions = ''
experimental-features = nix-command flakes ca-derivations
'';
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
optimise.automatic = true;
};
}