2022-12-28 13:27:18 +01:00
|
|
|
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
|
|
imports = [
|
2023-01-10 02:38:06 +01:00
|
|
|
./global
|
|
|
|
./features/desktop/xmonad.nix
|
2023-01-10 16:05:48 +01:00
|
|
|
./features/desktop/common/discord.nix
|
|
|
|
./features/desktop/common/zathura.nix
|
2023-01-12 20:49:08 +01:00
|
|
|
./features/desktop/common/firefox.nix
|
|
|
|
];
|
|
|
|
|
2023-03-01 16:58:56 +01:00
|
|
|
# Arbitrary extra packages
|
2023-01-12 20:49:08 +01:00
|
|
|
home.packages = with pkgs; [
|
2023-03-01 16:58:56 +01:00
|
|
|
# Desktop apps
|
2023-01-12 20:49:08 +01:00
|
|
|
signal-desktop # Signal client
|
|
|
|
zoom-us # Zoom client 🤮
|
|
|
|
obsidian # Notes
|
|
|
|
peek # GIF recorder
|
|
|
|
vlc # Video player
|
|
|
|
gimp # Image editing
|
|
|
|
libreoffice # Free office suite
|
2023-03-01 16:58:56 +01:00
|
|
|
lmms # Music software
|
2023-01-12 20:49:08 +01:00
|
|
|
# obs-studio # video recorder
|
2023-03-01 16:58:56 +01:00
|
|
|
|
|
|
|
# Clis
|
|
|
|
agenix # Secret encryption
|
|
|
|
sherlock # Search for usernames across different websites
|
2022-12-28 13:27:18 +01:00
|
|
|
];
|
2023-02-05 04:01:18 +01:00
|
|
|
|
2023-02-28 10:11:50 +01:00
|
|
|
home.sessionVariables.QT_SCREEN_SCALE_FACTOR = 1.4; # Bigger text in qt apps
|
|
|
|
satellite-dev.enable = true; # Simlink some stuff outside the store
|
2022-12-28 13:27:18 +01:00
|
|
|
}
|