mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Add librewolf
This commit is contained in:
parent
349e926e32
commit
e626f9d97e
5 changed files with 28 additions and 3 deletions
|
|
@ -5,8 +5,6 @@ let cfg = osConfig.mods; in {
|
|||
home.homeDirectory = "/home/${cfg.user.name}";
|
||||
|
||||
# Modules
|
||||
programs.helix.enable = true;
|
||||
programs.qutebrowser.enable = true;
|
||||
mods.social.enable = true;
|
||||
mods.i3.enable = true;
|
||||
mods.terminal.zsh.enable = true;
|
||||
|
|
@ -14,6 +12,7 @@ let cfg = osConfig.mods; in {
|
|||
mods.terminal.development.enable = true;
|
||||
mods.terminal.tools.enable = true;
|
||||
mods.desktop.development.enable = true;
|
||||
mods.desktop.productivity.enable = true;
|
||||
|
||||
# Host specific
|
||||
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ in {
|
|||
./hyprland.nix
|
||||
./social.nix
|
||||
./development.nix
|
||||
./productivity.nix
|
||||
];
|
||||
|
||||
mods.hyprland.enable = lib.mkIf cfg.wayland.enable true;
|
||||
|
|
|
|||
20
modules/home/desktop/productivity.nix
Normal file
20
modules/home/desktop/productivity.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
options.mods.desktop.productivity.enable =
|
||||
lib.mkEnableOption "enables gui productivity tools";
|
||||
|
||||
config = lib.mkIf config.mods.desktop.productivity.enable {
|
||||
# home.packages = with pkgs; [];
|
||||
|
||||
programs.librewolf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
"webgl.disabled" = true;
|
||||
"privacy.resistFingerprinting" = true;
|
||||
"privacy.clearOnShutdown.history" = false;
|
||||
"privacy.clearOnShutdown.cookies" = false;
|
||||
"network.cookie.lifetimePolicy" = 0;
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
|
@ -29,6 +29,11 @@ in {
|
|||
path = "${config.xdg.dataHome}/zsh/history";
|
||||
};
|
||||
|
||||
initExtra = ''
|
||||
autoload -U compinit
|
||||
setopt no_auto_remove_slash
|
||||
'';
|
||||
|
||||
shellAliases = aliases;
|
||||
|
||||
plugins = with pkgs; [
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ in with lib; {
|
|||
config = mkIf cfg.tools.enable {
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
enableZshIntegration = mkIf cfg.zsh.enable true;
|
||||
# enableZshIntegration = mkIf cfg.zsh.enable true;
|
||||
};
|
||||
|
||||
programs.zoxide = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue