63 lines
1.5 KiB
Nix
63 lines
1.5 KiB
Nix
{ pkgs, lib, config, ... }: {
|
|
imports = [
|
|
./global.nix
|
|
|
|
./features/desktop/zathura.nix
|
|
./features/desktop/spotify.nix
|
|
./features/desktop/firefox
|
|
./features/desktop/discord
|
|
./features/cli/productivity
|
|
./features/cli/pass.nix
|
|
./features/cli/nix-index.nix
|
|
./features/wayland/hyprland
|
|
./features/neovim
|
|
];
|
|
|
|
# Arbitrary extra packages
|
|
home.packages = with pkgs; [
|
|
# Desktop apps
|
|
# {{{ Communication
|
|
# signal-desktop # Signal client
|
|
element-desktop # Matrix client
|
|
# zoom-us # Zoom client 🤮
|
|
# inputs.matui.packages.${pkgs.system}.matui # Matrix TUi
|
|
# }}}
|
|
# {{{ Editors for different formats
|
|
# gimp # Image editing
|
|
# lmms # Music software
|
|
# kicad # PCB editing
|
|
# libreoffice # Free office suite
|
|
# }}}
|
|
# {{{ Gaming
|
|
# wine # Windows compat layer or whatever
|
|
# lutris # Game launcher
|
|
# }}}
|
|
# {{{ Clis
|
|
# sherlock # Search for usernames across different websites
|
|
catgirl # irc client
|
|
# }}}
|
|
# {{{ Misc
|
|
obsidian # Notes
|
|
# peek # GIF recorder
|
|
# mpv # Video player
|
|
# plover.dev # steno engine
|
|
# qbittorrent # Torrent client
|
|
# google-chrome # Not my primary browser, but sometimes needed in webdev
|
|
# obs-studio # video recorder
|
|
# }}}
|
|
];
|
|
|
|
home.sessionVariables.QT_SCREEN_SCALE_FACTORS = 1.4; # Bigger text in qt apps
|
|
|
|
satellite = {
|
|
# Simlink some commonly modified dotfiles outside the store
|
|
dev.enable = true;
|
|
|
|
monitors = [{
|
|
name = "eDP-1";
|
|
width = 1920;
|
|
height = 1080;
|
|
}];
|
|
};
|
|
}
|