148 lines
3.9 KiB
Nix
148 lines
3.9 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)
|
|
# chromium
|
|
# electrum
|
|
# element-desktop # matrix client
|
|
# evolution
|
|
# freecad
|
|
# geary
|
|
# gnome-calendar
|
|
# gnome-sound-recorder
|
|
# krita
|
|
# minecraft
|
|
# mycrypto
|
|
# pcmanfm
|
|
retroarch-free
|
|
# seahorse
|
|
# shotwell
|
|
# signal-desktop
|
|
# slack
|
|
# wineFull
|
|
authenticator
|
|
bluetui
|
|
brave
|
|
discord
|
|
droidcam
|
|
eog
|
|
evince
|
|
gallery-dl
|
|
geeqie
|
|
gnome-font-viewer
|
|
gnome-screenshot
|
|
gnome-system-monitor
|
|
gucharmap
|
|
inkscape
|
|
jellyfin-tui
|
|
openvpn
|
|
p7zip
|
|
pavucontrol
|
|
procps
|
|
protonvpn-gui
|
|
# spotify
|
|
tdesktop
|
|
thunderbird
|
|
transmission_4
|
|
wireguard-tools
|
|
wiremix
|
|
xournalpp
|
|
;
|
|
inherit (pkgs) heroic;
|
|
};
|
|
};
|
|
|
|
services = {
|
|
gnome-keyring.enable = true;
|
|
};
|
|
|
|
imports = [
|
|
../../hm/modules/combined/basics.nix
|
|
|
|
# ../../hm/modules/development/cpp.nix
|
|
# ../../hm/modules/development/database.nix
|
|
# ../../hm/modules/development/go.nix
|
|
# ../../hm/modules/development/javascript.nix
|
|
# ../../hm/modules/development/rust.nix
|
|
../../hm/modules/development/data.nix
|
|
../../hm/modules/development/docker.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/web.nix
|
|
|
|
# ../../hm/modules/alacritty.nix
|
|
# ../../hm/modules/autorandr.nix
|
|
# ../../hm/modules/biblio.nix
|
|
# ../../hm/modules/bitwarden.nix
|
|
# ../../hm/modules/carapace.nix
|
|
# ../../hm/modules/gnome_shell.nix
|
|
# ../../hm/modules/grobi.nix
|
|
# ../../hm/modules/jellyfin-player.nix
|
|
# ../../hm/modules/kakoune.nix
|
|
# ../../hm/modules/keepassxc.nix
|
|
# ../../hm/modules/kicad.nix
|
|
# ../../hm/modules/lutris.nix
|
|
# ../../hm/modules/nautilus.nix
|
|
../../hm/modules/obs-studio.nix
|
|
# ../../hm/modules/picom.nix
|
|
# ../../hm/modules/pycharm.nix
|
|
# ../../hm/modules/rofi.nix
|
|
# ../../hm/modules/screen_locker.nix
|
|
# ../../hm/modules/security.nix
|
|
# ../../hm/modules/spotifyd.nix
|
|
# ../../hm/modules/thunar.nix
|
|
# ../../hm/modules/twmn.nix
|
|
# ../../hm/modules/update_background.nix
|
|
# ../../hm/modules/vivaldi.nix
|
|
# ../../hm/modules/vscode.nix
|
|
# ../../hm/modules/blender_nvidia.nix
|
|
# ../../hm/modules/dwarf-fortress.nix
|
|
../../hm/modules/easyeffects.nix
|
|
../../hm/modules/firefox.nix
|
|
../../hm/modules/fonts.nix
|
|
../../hm/modules/foot.nix
|
|
../../hm/modules/gtk_theme.nix
|
|
../../hm/modules/heif.nix
|
|
../../hm/modules/helix.nix
|
|
../../hm/modules/joystickwake.nix
|
|
../../hm/modules/kdeconnect.nix
|
|
../../hm/modules/kitty.nix
|
|
../../hm/modules/mangohud.nix
|
|
../../hm/modules/megasync.nix
|
|
../../hm/modules/mpv.nix
|
|
# ../../hm/modules/ncspot.nix
|
|
../../hm/modules/noti.nix
|
|
../../hm/modules/nushell.nix
|
|
../../hm/modules/office.nix
|
|
../../hm/modules/pass.nix
|
|
../../hm/modules/pro_audio.nix
|
|
../../hm/modules/rclone-mount-bertof.nix
|
|
../../hm/modules/research.nix
|
|
../../hm/modules/syncthing.nix
|
|
../../hm/modules/vim.nix
|
|
../../hm/modules/virtualization.nix
|
|
../../hm/modules/webapp.nix
|
|
../../hm/modules/xresources.nix
|
|
../../hm/modules/yazi.nix
|
|
../../hm/modules/yt-dlp.nix
|
|
../../hm/modules/zathura.nix
|
|
../../hm/modules/zellij.nix
|
|
|
|
];
|
|
|
|
home.stateVersion = "22.11";
|
|
}
|