diff options
| author | Fuwn <[email protected]> | 2024-10-21 02:59:30 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-21 02:59:30 -0700 |
| commit | f205624af7fe48d16e89ab248e9a56bbb72c84c8 (patch) | |
| tree | 5b568bf57a549af2c6c4b02535cc3da0f8244cd1 /hosts | |
| parent | pc: setup plex drive and scaffold kansai mount point (diff) | |
| download | nixos-config-f205624af7fe48d16e89ab248e9a56bbb72c84c8.tar.xz nixos-config-f205624af7fe48d16e89ab248e9a56bbb72c84c8.zip | |
options: add primary user attribute
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/akashi/configuration.nix | 1 | ||||
| -rw-r--r-- | hosts/kansai/configuration.nix | 7 |
2 files changed, 6 insertions, 2 deletions
diff --git a/hosts/akashi/configuration.nix b/hosts/akashi/configuration.nix index 164a02e..fa9e613 100644 --- a/hosts/akashi/configuration.nix +++ b/hosts/akashi/configuration.nix @@ -12,6 +12,7 @@ ]; config = { + modules.primaryUser = "ebisu"; system.stateVersion = "24.05"; networking.hostName = "akashi"; services.openssh.settings.PermitRootLogin = "yes"; diff --git a/hosts/kansai/configuration.nix b/hosts/kansai/configuration.nix index d4a3ff1..31809bd 100644 --- a/hosts/kansai/configuration.nix +++ b/hosts/kansai/configuration.nix @@ -8,6 +8,9 @@ "${self}/modules/pc" ]; - networking.hostName = "kansai"; - system.stateVersion = "24.05"; + config = { + modules.primaryUser = "ebisu"; + networking.hostName = "kansai"; + system.stateVersion = "24.05"; + }; } |