blob: 350510dc1fa4957c50ce539969baf6ed9afee741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ 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"
];
}
|