32 lines
811 B
Nix
32 lines
811 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/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/lf.nix
|
|
# ../hm_modules/megasync.nix
|
|
# ../hm_modules/noti.nix
|
|
];
|
|
|
|
home.stateVersion = "22.05";
|
|
}
|