Deploy fix
This commit is contained in:
parent
2c3287c5cf
commit
b8b12b4c38
|
@ -192,7 +192,7 @@
|
|||
./modules/my-tinc
|
||||
inputs.youmubot.nixosModule.x86_64-linux
|
||||
./nki-personal-do/configuration.nix
|
||||
inputs.secrets.nixosModules.x86_64-linux.nki-personal-do
|
||||
inputs.secrets.nixosModules.nki-personal-do
|
||||
];
|
||||
};
|
||||
deploy.nodes."nki-personal-do" = {
|
||||
|
|
|
@ -11,6 +11,17 @@
|
|||
../modules/cloud/writefreely
|
||||
];
|
||||
|
||||
common.linux.enable = false; # Don't enable the "common linux" module, this is a special machine.
|
||||
|
||||
# Personal user
|
||||
users.users.nki = {
|
||||
isNormalUser = true;
|
||||
createHome = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
group = "users";
|
||||
uid = 1000;
|
||||
};
|
||||
|
||||
boot.cleanTmpDir = true;
|
||||
networking.hostName = "nki-personal";
|
||||
networking.firewall.allowPing = true;
|
||||
|
|
Loading…
Reference in a new issue