35 lines
869 B
Nix
35 lines
869 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 = [
|
|
../../modules/hm/__basic.nix
|
|
|
|
# ../../modules/hm/development/cpp.nix
|
|
# ../../modules/hm/development/data.nix
|
|
# ../../modules/hm/development/go.nix
|
|
# ../../modules/hm/development/javascript.nix
|
|
# ../../modules/hm/development/latex.nix
|
|
# ../../modules/hm/development/python.nix
|
|
# ../../modules/hm/development/rust.nix
|
|
|
|
# ../../modules/hm/fonts.nix
|
|
../../modules/hm/helix.nix
|
|
# ../../modules/hm/kitty.nix
|
|
# ../../modules/hm/megasync.nix
|
|
# ../../modules/hm/noti.nix
|
|
];
|
|
|
|
home.stateVersion = "23.05";
|
|
}
|