diff --git a/modules/hosts/HACKSTATION/hackstationConfiguration.nix b/modules/hosts/HACKSTATION/hackstationConfiguration.nix new file mode 100644 index 0000000..a2938d6 --- /dev/null +++ b/modules/hosts/HACKSTATION/hackstationConfiguration.nix @@ -0,0 +1,8 @@ +{ + self, + inputs, +}: { + flake.nixosModules.hackstationConfiguration = {pkgs, ...}: { + networking.hostName = "HACKSTATION"; + }; +} diff --git a/modules/system/core/user.nix b/modules/system/core/user.nix index 82094c2..057c88c 100644 --- a/modules/system/core/user.nix +++ b/modules/system/core/user.nix @@ -9,7 +9,14 @@ ... }: { users.users.user01 = { + isNormalUser = true; initialPassword = "password"; + shell = pkgs.zsh; + description = "user01"; + extraGroups = [ + "root" + "wheel" + ]; }; }; }