34 lines
589 B
Nix
34 lines
589 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home = {
|
|
language.base = "it_IT.UTF-8";
|
|
keyboard = {
|
|
layout = "it";
|
|
options = [
|
|
"terminate:ctrl_alt_bksp"
|
|
"compose:rctrl"
|
|
];
|
|
};
|
|
packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
gallery-dl
|
|
procps
|
|
wireguard-tools
|
|
xh
|
|
;
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
../../hm/combined/basics.nix
|
|
|
|
../../hm/helix.nix
|
|
../../hm/kitty.nix
|
|
../../hm/nushell.nix
|
|
../../hm/rclone-mount-bertof.nix
|
|
../../hm/syncthing.nix
|
|
../../hm/yt-dlp.nix
|
|
];
|
|
|
|
home.stateVersion = "22.11";
|
|
}
|