diff --git a/hosts/common.nix b/hosts/common.nix index f372231..a51cc92 100644 --- a/hosts/common.nix +++ b/hosts/common.nix @@ -40,9 +40,13 @@ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJFUwk54CNtSLUyXSTLsIs5KXgEsjOgE4HGlA4FacKjV me@tardis # msi laptop" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILMeU7L0yQ4+O1GME4D4UM4f6nqua+pWt/zdsMvyHV94 u0_a309@localhost # mobile" ]; - packages = with pkgs; []; }; + services.getty = { + autologinUser = "me"; + autologinOnce = true; + } + environment.systemPackages = with pkgs; [ nodejs age @@ -52,7 +56,6 @@ bind wget curl - stow unzip git ]; diff --git a/hosts/syedm/default.nix b/hosts/syedm/default.nix index e446268..128278c 100644 --- a/hosts/syedm/default.nix +++ b/hosts/syedm/default.nix @@ -29,7 +29,4 @@ networking.firewall.allowedTCPPorts = [ 22 80 443 ]; networking.firewall.allowedUDPPorts = []; - - # DO NOT CHNAGE, EVER! - system.stateVersion = "26.05"; } diff --git a/hosts/tardis/default.nix b/hosts/tardis/default.nix index a29eb37..87f9d45 100644 --- a/hosts/tardis/default.nix +++ b/hosts/tardis/default.nix @@ -10,8 +10,7 @@ firefox ]; - networking.hostName = "tardis"; + services.xserver.enable = true; - # DO NOT CHNAGE, EVER! - system.stateVersion = "26.05"; + networking.hostName = "tardis"; }