24 lines
455 B
Nix
24 lines
455 B
Nix
{ pkgs, ... }: {
|
|
home = {
|
|
language.base = "it_IT.UTF-8";
|
|
keyboard = {
|
|
layout = "it";
|
|
options = [
|
|
"terminate:ctrl_alt_bksp"
|
|
"compose:rctrl"
|
|
];
|
|
};
|
|
packages = [ pkgs.retroarch-free ];
|
|
};
|
|
|
|
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";
|
|
}
|