nixos-config/configurations/nix-store.nix
Charlotte Van Petegem 280fdeeab0 Don't use nix-channels
2020-07-08 17:19:13 +02:00

21 lines
387 B
Nix

{ ... }:
{
nix = {
gc = {
automatic = true;
dates = "hourly";
options = "--delete-older-than 7d";
};
optimise = {
automatic = true;
dates = [ "hourly" ];
};
};
nixpkgs.config = import ./nix-store/config.nix;
home-manager.users.charlotte = { ... }: {
xdg.configFile."nixpkgs/config.nix".source = ./nix-store/config.nix;
};
}