nixfleet/hosts/mbp/configuration.nix
2021-10-05 20:20:51 +02:00

30 lines
559 B
Nix

{pkgs, home-manager, ...}:
{
imports = [
../../users/andreaciceri
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
};
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
nix = {
package = pkgs.nixUnstable;
extraOptions = ''
experimental-features = nix-command flakes flakes ca-references
keep-derivations = true
keep-outputs = true
'';
gc = {
automatic = false;
user = "andreaciceri";
options = "--delete-older-than 3d";
};
};
}