Compare commits

..

2 Commits

Author SHA1 Message Date
mandlm 4e8cfc0033
feat: speed-up nix shells with nix-direnv 2022-08-29 08:19:44 +02:00
mandlm 8963ac9e89
feat: enable printing 2022-08-29 08:19:29 +02:00
2 changed files with 15 additions and 1 deletions

View File

@ -96,9 +96,22 @@
forwardX11 = true;
};
services.printing = {
enable = true;
};
services.avahi = {
enable = true;
nssmdns = true;
};
nix = {
package = pkgs.nixFlakes;
extraOptions = "experimental-features = nix-command flakes";
extraOptions = ''
experimental-features = nix-command flakes
keep-outputs = true
keep-derivations = true
'';
autoOptimiseStore = true;
gc = {

View File

@ -5,6 +5,7 @@
direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
};
}