hackstation config
This commit is contained in:
8
modules/hosts/HACKSTATION/hackstationConfiguration.nix
Normal file
8
modules/hosts/HACKSTATION/hackstationConfiguration.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
self,
|
||||||
|
inputs,
|
||||||
|
}: {
|
||||||
|
flake.nixosModules.hackstationConfiguration = {pkgs, ...}: {
|
||||||
|
networking.hostName = "HACKSTATION";
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -9,7 +9,14 @@
|
|||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
users.users.user01 = {
|
users.users.user01 = {
|
||||||
|
isNormalUser = true;
|
||||||
initialPassword = "password";
|
initialPassword = "password";
|
||||||
|
shell = pkgs.zsh;
|
||||||
|
description = "user01";
|
||||||
|
extraGroups = [
|
||||||
|
"root"
|
||||||
|
"wheel"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user