Odin tiziano: add retroarch

This commit is contained in:
Filippo Berto 2025-04-24 11:20:59 +02:00
parent 8c07e3d4d2
commit 0576921c67
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
3 changed files with 6 additions and 5 deletions

View file

@ -129,6 +129,7 @@ in
# };
services = {
displayManager.autoLogin = { enable = true; user = "tiziano"; };
avahi = {
enable = true;
openFirewall = true;
@ -148,7 +149,6 @@ in
xserver = {
displayManager = {
gdm = { enable = true; autoSuspend = false; };
autoLogin = { enable = true; user = "tiziano"; };
};
desktopManager.gnome.enable = true;
};

View file

@ -0,0 +1,24 @@
{ pkgs, ... }: {
home = {
language.base = "it_IT.UTF-8";
keyboard = {
layout = "it";
options = [
"terminate:ctrl_alt_bksp"
"compose:rctrl"
];
};
packages = [ pkgs.retroarchFull ];
};
imports = [
../../modules/hm/__basic.nix
../../modules/hm/syncthing_tiziano.nix
../../modules/hm/shell_aliases.nix
../../modules/hm/rclone-mount-tiziano.nix
];
home.stateVersion = "23.05";
}