127 lines
2.6 KiB
Nix
127 lines
2.6 KiB
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
home = {
|
|
language.base = "it_IT.UTF-8";
|
|
keyboard = {
|
|
layout = "en";
|
|
options = [ "terminate:ctrl_alt_bksp" "compose:rctrl" ];
|
|
};
|
|
packages = with pkgs; [
|
|
arandr
|
|
authy
|
|
bitwarden
|
|
btop
|
|
catgirl # IRC
|
|
cava
|
|
discord
|
|
docker-compose
|
|
docker-machine
|
|
droidcam
|
|
easyeffects
|
|
# electrum
|
|
# element-desktop # matrix client
|
|
evolution
|
|
filelight
|
|
# firefox
|
|
freecad
|
|
gallery-dl
|
|
gnome.file-roller
|
|
gnome.geary
|
|
gnome.gnome-calendar
|
|
gnome.gnome-screenshot
|
|
gnome.gnome-sound-recorder
|
|
# gnome.gnome-system-monitor
|
|
(google-chrome.override { commandLineArgs = [ "--password-store=gnome" "--force-dark-mode" ]; })
|
|
gucharmap
|
|
handbrake
|
|
httpie
|
|
hyperspace-cli
|
|
inkscape
|
|
jetbrains.datagrip
|
|
krita
|
|
kubectl
|
|
lutris
|
|
meld
|
|
minecraft
|
|
mpv
|
|
mycrypto
|
|
nix-prefetch-scripts
|
|
obsidian
|
|
okular
|
|
openvpn
|
|
p7zip
|
|
pavucontrol
|
|
pcmanfm
|
|
pentablet-driver
|
|
procps
|
|
# pulseaudio
|
|
retroarchFull
|
|
ripgrep
|
|
shotwell
|
|
signal-desktop
|
|
skypeforlinux
|
|
# slack
|
|
spotify
|
|
tdesktop
|
|
teams
|
|
transmission-gtk
|
|
(unstable.blender.override { cudaSupport = true; })
|
|
unstable.zotero
|
|
virt-manager
|
|
# wineFull
|
|
wireguard-tools
|
|
xournalpp
|
|
zoom-us
|
|
];
|
|
};
|
|
|
|
services = {
|
|
gnome-keyring.enable = true;
|
|
};
|
|
|
|
imports = [
|
|
./basic_env.nix
|
|
|
|
./modules/cpp.nix
|
|
# ./modules/go.nix
|
|
./modules/java.nix
|
|
./modules/javascript.nix
|
|
./modules/latex.nix
|
|
./modules/python.nix
|
|
./modules/rust.nix
|
|
|
|
./modules/alacritty.nix
|
|
./modules/autorandr.nix
|
|
./modules/bspwm.nix
|
|
./modules/easyeffects.nix
|
|
./modules/dunst.nix
|
|
# ./modules/grobi.nix
|
|
./modules/gtk_theme.nix
|
|
# ./modules/joystickwake.nix
|
|
./modules/kakoune.nix
|
|
# ./modules/keepassxc.nix
|
|
./modules/kitty.nix
|
|
./modules/mangohud.nix
|
|
./modules/megasync.nix
|
|
./modules/nix-index.nix
|
|
./modules/noti.nix
|
|
./modules/obs-studio.nix
|
|
./modules/office.nix
|
|
./modules/onedrive.nix
|
|
./modules/pass.nix
|
|
./modules/picom.nix
|
|
./modules/polybar.nix
|
|
./modules/pro_audio.nix
|
|
./modules/rofimoji.nix
|
|
./modules/rofi.nix
|
|
./modules/screen_locker.nix
|
|
# ./modules/security.nix
|
|
./modules/sxhkd.nix
|
|
./modules/syncthing.nix
|
|
./modules/terminator.nix
|
|
./modules/update_background.nix
|
|
./modules/webapp.nix
|
|
./modules/xidlehook.nix
|
|
./modules/zathura.nix
|
|
];
|
|
}
|