27 lines
613 B
Nix
27 lines
613 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)
|
|
cava gallery-dl procps wireguard-tools httpie;
|
|
};
|
|
};
|
|
imports = [
|
|
../hm_modules/__basic.nix
|
|
|
|
../hm_modules/cava.nix
|
|
../hm_modules/dunst.nix
|
|
../hm_modules/helix.nix
|
|
../hm_modules/kitty.nix
|
|
../hm_modules/lf.nix
|
|
../hm_modules/spotifyd.nix
|
|
../hm_modules/syncthing.nix
|
|
# ../hm_modules/xidlehook.nix
|
|
];
|
|
|
|
home.stateVersion = "22.11";
|
|
}
|