Changed auto-update to just pull form git
This commit is contained in:
parent
71bcde6239
commit
a67e367c68
13
flake.nix
13
flake.nix
@ -115,6 +115,19 @@
|
||||
./nixos/zerotier.nix
|
||||
];
|
||||
};
|
||||
bill = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
inherit inputs outputs;
|
||||
hostname = "bill";
|
||||
mainUser = "bill";
|
||||
};
|
||||
modules = [
|
||||
./nixos/configuration.nix
|
||||
./nixos/kde-desktop.nix
|
||||
./nixos/family.nix
|
||||
./nixos/zerotier.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
# Standalone home-manager configuration entrypoint
|
||||
|
@ -145,9 +145,8 @@
|
||||
};
|
||||
system.autoUpgrade = {
|
||||
enable = true;
|
||||
flake = inputs.self.outPath;
|
||||
flake = "git+https://codeberg.org/traverseda/nixos-config#${hostname}";
|
||||
flags = [
|
||||
"--update-input"
|
||||
"nixpkgs"
|
||||
];
|
||||
dates = "02:00";
|
||||
|
@ -7,9 +7,10 @@
|
||||
};
|
||||
users.users = {
|
||||
gwen = {
|
||||
# You can set an initial password for your user.
|
||||
# If you do, you can skip setting a root password by passing '--no-root-passwd' to nixos-install.
|
||||
# Be sure to change it (using passwd) after rebooting!
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "networkManager" ];
|
||||
};
|
||||
bill = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "networkManager" ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user