Some fixes to deprecation warnings Update settings to 24.05 by default Add better tools Include GParted in Jude deployment Update unstable pin
92 lines
2.0 KiB
Nix
92 lines
2.0 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
cfg = config.greg.gui;
|
|
|
|
excludes = systems: opts: (
|
|
if ( builtins.all (x: pkgs.system != x) systems ) then opts else []
|
|
);
|
|
|
|
# For now, we ignore this and don't install it
|
|
ffPkgs = if ( pkgs.stdenv.hostPlatform.isDarwin )
|
|
then pkgs.firefox-bin
|
|
else pkgs.firefox-wayland.override { cfg.enableGnomeExtensions = true; };
|
|
|
|
vars = {
|
|
MOZ_ENABLE_WAYLAND = "1";
|
|
XDG_CURRENT_DESKTOP = "sway";
|
|
};
|
|
in {
|
|
options.greg.gui = lib.mkEnableOption "Enable GUI programs";
|
|
|
|
config = (lib.mkIf cfg {
|
|
# These packages are Linux only
|
|
home.packages = with pkgs; ( excludes ["x86_64-darwin" "aarch64-darwin"]
|
|
[
|
|
cdrtools
|
|
fluffychat
|
|
cinny-desktop
|
|
qpwgraph
|
|
vlc
|
|
x265
|
|
]) ++
|
|
|
|
# x86_64-linux only
|
|
( excludes ["x86_64-darwin" "aarch64-darwin" "aarch64-linux"]
|
|
[
|
|
bitwarden
|
|
discord
|
|
endeavour
|
|
gnucash
|
|
jellyfin-media-player
|
|
libreoffice
|
|
#logseq
|
|
nextcloud-client
|
|
slack
|
|
]) ++
|
|
|
|
# Items that are not supported on ARM/Linux
|
|
( excludes ["aarch64-linux"]
|
|
[
|
|
onlyoffice-bin
|
|
synology-drive-client
|
|
zoom-us
|
|
]);
|
|
|
|
programs.firefox = {
|
|
enable = (! pkgs.stdenv.hostPlatform.isDarwin);
|
|
package = ffPkgs;
|
|
profiles = {
|
|
default = {
|
|
settings = {
|
|
"app.update.auto" = false;
|
|
"browser.ctrlTab.sortByRecentlyUsed" = true;
|
|
"browser.startup.page" = 3;
|
|
"browser.startup.homepage" = "https://thehellings.com";
|
|
"doh-rollout.doorhanger-decision" = "UIDisabled";
|
|
"doh-rollout.doneFirstRun" = true;
|
|
"signon.rememberSignons" = false;
|
|
};
|
|
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
|
bitwarden
|
|
bypass-paywalls-clean
|
|
gsconnect
|
|
foxyproxy-standard
|
|
multi-account-containers
|
|
plasma-integration
|
|
octotree
|
|
refined-github
|
|
tree-style-tab
|
|
ublock-origin
|
|
unpaywall
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
# This is supposed to be in support of Firefox, but I dunno...
|
|
programs.bash.sessionVariables = vars;
|
|
programs.xonsh.sessionVariables = vars;
|
|
});
|
|
}
|