nix-dotfiles/instances/thor/hm.nix

149 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)
# chromium
# electrum
# element-desktop # matrix client
# evolution
# freecad
file-roller
# geary
# gnome-calendar
# gnome-sound-recorder
# krita
# minecraft
# mycrypto
# pcmanfm
retroarch-free
# seahorse
# shotwell
# signal-desktop
# slack
# wineFull
authenticator
bluetui
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
telegram-desktop
thunderbird
transmission_4
wireguard-tools
wiremix
xournalpp
;
inherit (pkgs) heroic;
};
};
services = {
gnome-keyring.enable = true;
};
imports = [
../../hm/combined/basics.nix
# ../../hm/development/cpp.nix
# ../../hm/development/database.nix
# ../../hm/development/go.nix
# ../../hm/development/javascript.nix
# ../../hm/development/rust.nix
../../hm/development/data.nix
../../hm/development/docker.nix
../../hm/development/kubernetes.nix
../../hm/development/latex.nix
../../hm/development/markdown.nix
../../hm/development/nix.nix
../../hm/development/python.nix
../../hm/development/web.nix
# ../../hm/alacritty.nix
# ../../hm/autorandr.nix
# ../../hm/biblio.nix
# ../../hm/bitwarden.nix
# ../../hm/carapace.nix
# ../../hm/gnome_shell.nix
# ../../hm/grobi.nix
# ../../hm/jellyfin-player.nix
# ../../hm/kakoune.nix
# ../../hm/keepassxc.nix
# ../../hm/kicad.nix
# ../../hm/lutris.nix
# ../../hm/nautilus.nix
../../hm/obs-studio.nix
# ../../hm/picom.nix
# ../../hm/pycharm.nix
# ../../hm/rofi.nix
# ../../hm/screen_locker.nix
# ../../hm/security.nix
# ../../hm/spotifyd.nix
# ../../hm/thunar.nix
# ../../hm/twmn.nix
# ../../hm/update_background.nix
# ../../hm/vivaldi.nix
# ../../hm/vscode.nix
# ../../hm/blender_nvidia.nix
# ../../hm/dwarf-fortress.nix
../../hm/easyeffects.nix
../../hm/firefox.nix
../../hm/fonts.nix
../../hm/foot.nix
../../hm/gtk_theme.nix
../../hm/heif.nix
../../hm/helix.nix
../../hm/joystickwake.nix
../../hm/kdeconnect.nix
../../hm/kitty.nix
../../hm/mangohud.nix
../../hm/megasync.nix
../../hm/mpv.nix
# ../../hm/ncspot.nix
../../hm/nix-index.nix
../../hm/noti.nix
../../hm/nushell.nix
../../hm/office.nix
../../hm/pass.nix
../../hm/pro_audio.nix
../../hm/rclone-mount-bertof.nix
../../hm/research.nix
../../hm/syncthing.nix
../../hm/vim.nix
../../hm/virtualization.nix
../../hm/webapp.nix
../../hm/xresources.nix
../../hm/yazi.nix
../../hm/yt-dlp.nix
../../hm/zathura.nix
../../hm/zellij.nix
];
home.stateVersion = "22.11";
}