nix-dotfiles/freya/hm.nix
2023-07-19 10:42:09 +01:00

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 = [
../modules/hm/__basic.nix
../modules/hm/cava.nix
../modules/hm/dunst.nix
../modules/hm/helix.nix
../modules/hm/kitty.nix
../modules/hm/lf.nix
../modules/hm/spotifyd.nix
../modules/hm/syncthing.nix
# ../modules/hm/xidlehook.nix
];
home.stateVersion = "22.11";
}