mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Update nix
This commit is contained in:
parent
f3e351dad6
commit
3256def44c
5 changed files with 118 additions and 111 deletions
|
|
@ -1,80 +1,86 @@
|
|||
{ pkgs, lib, config, osConfig, ... }:
|
||||
let color = config.lib.stylix.colors.withHashtag;
|
||||
in with lib; {
|
||||
options.mods.desktop.productivity.enable =
|
||||
lib.mkEnableOption "enables gui productivity tools";
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
osConfig,
|
||||
...
|
||||
}: let
|
||||
color = config.lib.stylix.colors.withHashtag;
|
||||
in
|
||||
with lib; {
|
||||
options.mods.desktop.productivity.enable =
|
||||
lib.mkEnableOption "enables gui productivity tools";
|
||||
|
||||
config = lib.mkIf config.mods.desktop.productivity.enable {
|
||||
home.packages = with pkgs; [
|
||||
# ISO downloader
|
||||
qbittorrent
|
||||
xd
|
||||
biglybt
|
||||
# transmission_4-gtk
|
||||
config = lib.mkIf config.mods.desktop.productivity.enable {
|
||||
home.packages = with pkgs; [
|
||||
# ISO downloader
|
||||
qbittorrent
|
||||
xd
|
||||
biglybt
|
||||
# transmission_4-gtk
|
||||
|
||||
# email
|
||||
thunderbird
|
||||
# email
|
||||
thunderbird
|
||||
|
||||
# webgl
|
||||
chromium
|
||||
mullvad-browser
|
||||
# webgl
|
||||
chromium
|
||||
mullvad-browser
|
||||
|
||||
# password manager
|
||||
bitwarden-desktop
|
||||
# password manager
|
||||
bitwarden-desktop
|
||||
|
||||
# file management
|
||||
libsForQt5.breeze-icons
|
||||
libsForQt5.qt5ct
|
||||
libsForQt5.dolphin
|
||||
# file management
|
||||
libsForQt5.breeze-icons
|
||||
libsForQt5.qt5ct
|
||||
|
||||
# documents
|
||||
texliveFull
|
||||
# texstudio
|
||||
# documents
|
||||
texliveFull
|
||||
# texstudio
|
||||
|
||||
# 3D
|
||||
blender
|
||||
];
|
||||
# 3D
|
||||
blender
|
||||
];
|
||||
|
||||
# qt.platformTheme = "qtct";
|
||||
# qt.platformTheme = "qtct";
|
||||
|
||||
home.sessionVariables.BROWSER = "librewolf";
|
||||
programs.zsh.sessionVariables.BROWSER = "librewolf";
|
||||
home.sessionVariables.BROWSER = "librewolf";
|
||||
programs.zsh.sessionVariables.BROWSER = "librewolf";
|
||||
|
||||
services.flameshot = {
|
||||
enable = false;
|
||||
settings = {
|
||||
General = {
|
||||
disabledTrayIcon = true;
|
||||
showStartupLaunchMessage = false;
|
||||
startupLaunch = false;
|
||||
services.flameshot = {
|
||||
enable = false;
|
||||
settings = {
|
||||
General = {
|
||||
disabledTrayIcon = true;
|
||||
showStartupLaunchMessage = false;
|
||||
startupLaunch = false;
|
||||
|
||||
uiColor = color.base01;
|
||||
contrastUiColor = color.base00;
|
||||
uiColor = color.base01;
|
||||
contrastUiColor = color.base00;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.librewolf = {
|
||||
enable = false;
|
||||
settings = {
|
||||
"webgl.disabled" = true;
|
||||
"privacy.resistFingerprinting" = true;
|
||||
"privacy.clearOnShutdown.history" = false;
|
||||
"privacy.clearOnShutdown.cookies" = false;
|
||||
"network.cookie.lifetimePolicy" = 0;
|
||||
programs.librewolf = {
|
||||
enable = false;
|
||||
settings = {
|
||||
"webgl.disabled" = true;
|
||||
"privacy.resistFingerprinting" = true;
|
||||
"privacy.clearOnShutdown.history" = false;
|
||||
"privacy.clearOnShutdown.cookies" = false;
|
||||
"network.cookie.lifetimePolicy" = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
xdg.desktopEntries = lib.mkIf osConfig.mods.i2p.enable {
|
||||
i2p-browser = {
|
||||
name = "i2p Browser";
|
||||
genericName = "Web Browser";
|
||||
exec = "${pkgs.mullvad-browser}/bin/mullvad-browser -p i2p";
|
||||
xdg.desktopEntries = lib.mkIf osConfig.mods.i2p.enable {
|
||||
i2p-browser = {
|
||||
name = "i2p Browser";
|
||||
genericName = "Web Browser";
|
||||
exec = "${pkgs.mullvad-browser}/bin/mullvad-browser -p i2p";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# programs.qutebrowser = {
|
||||
# enable = true;
|
||||
# };
|
||||
};
|
||||
}
|
||||
# programs.qutebrowser = {
|
||||
# enable = true;
|
||||
# };
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue