Enable autologin and xserver

This commit is contained in:
2026-07-07 09:50:44 +01:00
parent c7ada99ab3
commit 5954a223d9
3 changed files with 7 additions and 8 deletions
+5 -2
View File
@@ -40,9 +40,13 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJFUwk54CNtSLUyXSTLsIs5KXgEsjOgE4HGlA4FacKjV me@tardis # msi laptop" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJFUwk54CNtSLUyXSTLsIs5KXgEsjOgE4HGlA4FacKjV me@tardis # msi laptop"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILMeU7L0yQ4+O1GME4D4UM4f6nqua+pWt/zdsMvyHV94 u0_a309@localhost # mobile" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILMeU7L0yQ4+O1GME4D4UM4f6nqua+pWt/zdsMvyHV94 u0_a309@localhost # mobile"
]; ];
packages = with pkgs; [];
}; };
services.getty = {
autologinUser = "me";
autologinOnce = true;
}
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
nodejs nodejs
age age
@@ -52,7 +56,6 @@
bind bind
wget wget
curl curl
stow
unzip unzip
git git
]; ];
-3
View File
@@ -29,7 +29,4 @@
networking.firewall.allowedTCPPorts = [ 22 80 443 ]; networking.firewall.allowedTCPPorts = [ 22 80 443 ];
networking.firewall.allowedUDPPorts = []; networking.firewall.allowedUDPPorts = [];
# DO NOT CHNAGE, EVER!
system.stateVersion = "26.05";
} }
+2 -3
View File
@@ -10,8 +10,7 @@
firefox firefox
]; ];
networking.hostName = "tardis"; services.xserver.enable = true;
# DO NOT CHNAGE, EVER! networking.hostName = "tardis";
system.stateVersion = "26.05";
} }