nix-dotfiles/baldur/hm.nix

24 lines
517 B
Nix

{ pkgs, ... }: {
home = {
language.base = "it_IT.UTF-8";
keyboard = {
layout = "it";
options = [ "terminate:ctrl_alt_bksp" "compose:rctrl" "grp:menu_toggle" ];
};
packages = with pkgs; [
nix-prefetch-scripts
];
};
imports = [
../hm_modules/__basic.nix
# ../hm_modules/fonts.nix
../hm_modules/helix.nix
# ../hm_modules/kitty.nix
# ../hm_modules/lf.nix
# ../hm_modules/megasync.nix
# ../hm_modules/noti.nix
];
home.stateVersion = "22.05";
}