diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-08-04 12:50:12 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-08-04 12:50:22 +0530 |
| commit | 4eb5f01f1f7a11527be56bd8a8afecd31d640b15 (patch) | |
| tree | e936f39df5036f0ba1928f662ea6f4deeee31fe4 /configuration.nix | |
| parent | 43e9a80ddf11931c9bbad94262605951e7ff3d2a (diff) | |
| download | nixos-config-4eb5f01f1f7a11527be56bd8a8afecd31d640b15.tar.gz nixos-config-4eb5f01f1f7a11527be56bd8a8afecd31d640b15.zip | |
config sync
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix index 40796f0..e8033df 100644 --- a/configuration.nix +++ b/configuration.nix @@ -137,14 +137,17 @@ in }; }; }; - fonts.fonts = with pkgs; [ + fonts.packages = with pkgs; [ # jetbrains-mono (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) cozette noto-fonts-emoji ]; - nix.settings.auto-optimise-store = true; + nix.settings = { + experimental-features = [ "nix-command" "flakes" ]; + auto-optimise-store = true; + }; nix.gc = { automatic = true; dates = "weekly"; |
