1
Fork 0
satellite/home/adrielus/tethys.nix
2023-04-27 02:08:20 +03:00

36 lines
1 KiB
Nix

{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
./global
./features/desktop/xmonad.nix
./features/desktop/common/discord.nix
./features/desktop/common/signal.nix
./features/desktop/common/qbittorrent.nix
./features/desktop/common/zathura.nix
./features/desktop/common/firefox.nix
./features/games
];
# Arbitrary extra packages
home.packages = with pkgs; [
# Desktop apps
zoom-us # Zoom client 🤮
element-desktop # Matrix client
obsidian # Notes
peek # GIF recorder
vlc # Video player
gimp # Image editing
libreoffice # Free office suite
lmms # Music software
kicad # PCB editing
# google-chrome # Not my primary browser, but sometimes needed in webdev
# obs-studio # video recorder
# Clis
agenix # Secret encryption
sherlock # Search for usernames across different websites
];
home.sessionVariables.QT_SCREEN_SCALE_FACTORS = 1.4; # Bigger text in qt apps
satellite.dev.enable = true; # Simlink some stuff outside the store
}