33 lines
867 B
Nix
33 lines
867 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)
|
|
file htop neofetch nix-prefetch-scripts ripgrep wget xclip yq;
|
|
};
|
|
};
|
|
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.11";
|
|
}
|