21 lines
387 B
Nix
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;
|
|
};
|
|
}
|