diff options
Diffstat (limited to 'nixos/hosts/hamac/default.nix')
-rw-r--r-- | nixos/hosts/hamac/default.nix | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/nixos/hosts/hamac/default.nix b/nixos/hosts/hamac/default.nix index d17b155..e768648 100644 --- a/nixos/hosts/hamac/default.nix +++ b/nixos/hosts/hamac/default.nix @@ -11,6 +11,8 @@ <top/shared/vpn.nix> ]; + workstation.username = "martin"; + # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -35,18 +37,6 @@ LC_TIME = "en_US.UTF-8"; }; - users.users.martin = { - isNormalUser = true; - description = "Martin"; - extraGroups = [ "networkmanager" "wheel" ]; - packages = with pkgs; []; - }; - - services.getty = { - autologinUser = "martin"; - autologinOnce = true; # only in the first tty once per boot - }; - # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ |