115 lines
3.4 KiB
Nix
115 lines
3.4 KiB
Nix
{ pkgs, ... }: {
|
|
home = {
|
|
language.base = "it_IT.UTF-8";
|
|
keyboard = {
|
|
layout = "us,it";
|
|
variant = ",colemak,";
|
|
options = [ "terminate:ctrl_alt_bksp" "compose:rctrl" "grp:menu_toggle" ];
|
|
};
|
|
packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
# electrum
|
|
# element-desktop # matrix client
|
|
# evolution
|
|
# freecad
|
|
# minecraft
|
|
# mycrypto
|
|
# pcmanfm
|
|
# pulseaudio
|
|
# signal-desktop
|
|
# slack
|
|
# wineFull
|
|
arandr authy bitwarden discord dmenu docker-compose docker-machine
|
|
droidcam easyeffects evince filelight gallery-dl gucharmap handbrake
|
|
httpie inkscape krita meld openvpn p7zip pavucontrol pcsx2
|
|
pentablet-driver postman procps pulseaudio retroarchFull shotwell
|
|
skypeforlinux spotify tdesktop teams thunderbird transmission-gtk
|
|
virt-manager virt-viewer wireguard-tools xournalpp zoom-us;
|
|
inherit (pkgs.gnome)
|
|
# geary
|
|
# gnome-boxes
|
|
# gnome-calendar
|
|
# gnome-sound-recorder
|
|
# seahorse
|
|
eog file-roller gnome-font-viewer gnome-screenshot gnome-system-monitor
|
|
totem;
|
|
};
|
|
};
|
|
|
|
services = { gnome-keyring.enable = true; };
|
|
|
|
imports = [
|
|
../hm_modules/__basic.nix
|
|
|
|
../hm_modules/development/cpp.nix
|
|
../hm_modules/development/data.nix
|
|
../hm_modules/development/database.nix
|
|
../hm_modules/development/docker.nix
|
|
# ../hm_modules/development/go.nix
|
|
../hm_modules/development/javascript.nix
|
|
../hm_modules/development/kubernetes.nix
|
|
../hm_modules/development/latex.nix
|
|
../hm_modules/development/markdown.nix
|
|
../hm_modules/development/nix.nix
|
|
../hm_modules/development/python.nix
|
|
../hm_modules/development/rust.nix
|
|
|
|
../hm_modules/alacritty.nix
|
|
../hm_modules/autorandr.nix
|
|
../hm_modules/biblio.nix
|
|
../hm_modules/blender_nvidia.nix
|
|
../hm_modules/bspwm.nix
|
|
../hm_modules/cava.nix
|
|
../hm_modules/dunst.nix
|
|
# ../hm_modules/dwarf-fortress.nix
|
|
../hm_modules/easyeffects.nix
|
|
../hm_modules/firefox.nix
|
|
../hm_modules/fonts.nix
|
|
# ../hm_modules/gnome_shell.nix
|
|
# ../hm_modules/grobi.nix
|
|
../hm_modules/gtk_theme.nix
|
|
../hm_modules/heif.nix
|
|
../hm_modules/helix.nix
|
|
../hm_modules/joystickwake.nix
|
|
../hm_modules/kakoune.nix
|
|
../hm_modules/kdeconnect.nix
|
|
# ../hm_modules/keepassxc.nix
|
|
../hm_modules/kitty.nix
|
|
../hm_modules/lf.nix
|
|
../hm_modules/lutris.nix
|
|
../hm_modules/mangohud.nix
|
|
../hm_modules/megasync.nix
|
|
../hm_modules/mpv.nix
|
|
../hm_modules/nautilus.nix
|
|
../hm_modules/ncspot.nix
|
|
../hm_modules/nix-index.nix
|
|
../hm_modules/noti.nix
|
|
../hm_modules/nushell.nix
|
|
../hm_modules/obs-studio.nix
|
|
../hm_modules/office.nix
|
|
../hm_modules/pass.nix
|
|
../hm_modules/picom.nix
|
|
../hm_modules/polybar.nix
|
|
../hm_modules/pro_audio.nix
|
|
../hm_modules/pycharm.nix
|
|
../hm_modules/spotifyd.nix
|
|
../hm_modules/research.nix
|
|
../hm_modules/rofi.nix
|
|
# ../hm_modules/screen_locker.nix
|
|
# ../hm_modules/security.nix
|
|
../hm_modules/sxhkd.nix
|
|
../hm_modules/syncthing.nix
|
|
../hm_modules/terminator.nix
|
|
../hm_modules/thunar.nix
|
|
# ../hm_modules/twmn.nix
|
|
../hm_modules/update_background.nix
|
|
../hm_modules/vim.nix
|
|
../hm_modules/webapp.nix
|
|
../hm_modules/xidlehook.nix
|
|
../hm_modules/xresources.nix
|
|
../hm_modules/zathura.nix
|
|
../hm_modules/zellij.nix
|
|
];
|
|
|
|
home.stateVersion = "22.11";
|
|
}
|