nix-dotfiles/instances/baldur/hm.nix
2025-09-08 11:36:45 +02:00

35 lines
878 B
Nix

{ pkgs, ... }:
{
home = {
language.base = "it_IT.UTF-8";
keyboard = {
layout = "it";
options = [
"terminate:ctrl_alt_bksp"
"compose:rctrl"
"grp:menu_toggle"
];
};
packages = builtins.attrValues { inherit (pkgs) nix-prefetch-scripts; };
};
imports = [
../../hm/modules/combined/minimal.nix
# ../../hm/modules/development/cpp.nix
# ../../hm/modules/development/data.nix
# ../../hm/modules/development/go.nix
# ../../hm/modules/development/javascript.nix
# ../../hm/modules/development/latex.nix
# ../../hm/modules/development/python.nix
# ../../hm/modules/development/rust.nix
# ../../hm/modules/fonts.nix
../../hm/modules/helix.nix
# ../../hm/modules/kitty.nix
# ../../hm/modules/megasync.nix
# ../../hm/modules/noti.nix
];
home.stateVersion = "23.05";
}