This commit is contained in:
2023-09-26 14:57:12 +02:00
parent de7dd1089b
commit 2d5a1a68eb

View File

@@ -15,9 +15,14 @@
./hardware-configuration.nix
];
jovian.steam.enable = true;
jovian.steam.autoStart = true;
jovian.steam.user = "dominik";
services.xserver.windowManager.i3.enable = true;
jovian.steam = {
enable = true;
autoStart = true;
user = "dominik";
desktopSession = "i3";
};
# Bootloader.
boot.loader.systemd-boot.enable = true;
@@ -74,4 +79,6 @@
# Workaround for GNOME autologin: https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229
systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false;
system.stateVersion = "23.05";
}