blob: 6749d36cc2bf11cf49c6bbd4c37f3bb3de1a7682 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{pkgs, ...}: {
personal.nix = {
enable = true;
autoUpgrade = true;
flake = "git+file:///etc/nixos";
gc.enable = true;
};
system.autoUpgrade.flags = pkgs.personal.lib.updateInputFlags [
"latitude-7490/home-manager"
"latitude-7490/my-nixpkgs"
"latitude-7490/nixos-hardware"
"latitude-7490/nixpkgs"
"latitude-7490/stylix"
];
}
|