2021-10-05 23:42:21 -07:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
defaultPkgs = with pkgs; [
|
|
|
|
|
calibre
|
|
|
|
|
dmenu
|
|
|
|
|
firefox
|
|
|
|
|
multilockscreen
|
2022-01-08 18:12:02 -08:00
|
|
|
mullvad-vpn
|
2021-10-10 10:27:04 -07:00
|
|
|
obsidian
|
2021-10-05 23:42:21 -07:00
|
|
|
signal-desktop
|
2021-10-10 10:27:04 -07:00
|
|
|
spotify
|
2021-10-05 23:42:21 -07:00
|
|
|
slack
|
2022-01-08 18:51:36 -08:00
|
|
|
# Do NOT use qbittorrent unless you have set up interface binding with your
|
|
|
|
|
# VPN: https://web.archive.org/web/20210426203102/https://mullvad.net/en/help/bittorrent/
|
2022-01-08 18:12:02 -08:00
|
|
|
qbittorrent
|
2021-10-05 23:42:21 -07:00
|
|
|
vlc
|
|
|
|
|
zathura
|
2021-10-10 10:27:04 -07:00
|
|
|
zoom-us
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
gnomePkgs = with pkgs; [
|
|
|
|
|
gnomecast
|
|
|
|
|
gnome.gnome-tweaks
|
2022-03-15 23:23:57 -07:00
|
|
|
# TODO: enable after experimenting with multi-monitor support and workspaces:
|
|
|
|
|
# https://github.com/paperwm/PaperWM#recommended-gnome-shell-settings
|
|
|
|
|
# gnomeExtensions.paperwm
|
2021-10-10 10:27:04 -07:00
|
|
|
gnomeExtensions.worksets
|
2021-10-05 23:42:21 -07:00
|
|
|
];
|
|
|
|
|
in
|
|
|
|
|
{
|
2022-08-03 08:23:19 -07:00
|
|
|
imports = [ (import ./commandline.nix) (import ./programs/alacritty)];
|
2021-10-05 23:42:21 -07:00
|
|
|
|
2022-08-01 00:25:44 -07:00
|
|
|
nixpkgs.overlays = [ (import ../overlays/paperwm.nix) ];
|
2022-03-15 23:23:57 -07:00
|
|
|
|
2021-10-05 23:42:21 -07:00
|
|
|
home = {
|
2021-10-10 10:27:04 -07:00
|
|
|
packages = defaultPkgs ++ gnomePkgs;
|
2021-10-05 23:42:21 -07:00
|
|
|
};
|
|
|
|
|
}
|