diff options
| author | Leonardo <noreply@leoflo.me> | 2025-12-23 21:52:55 +0100 |
|---|---|---|
| committer | Leonardo <noreply@leoflo.me> | 2025-12-23 21:52:55 +0100 |
| commit | 6390fb201ba0a60ee4b1795545061f1be8767be4 (patch) | |
| tree | a89c154e986bff97f7d94e6ab04b86944407ccf2 | |
| parent | e191f23cc8b01e3abd2b7dbc048bc029004c773c (diff) | |
| download | nixos-6390fb201ba0a60ee4b1795545061f1be8767be4.tar.gz nixos-6390fb201ba0a60ee4b1795545061f1be8767be4.zip | |
librewolf e piccoli fix a xfce
| -rw-r--r-- | hermes/nixos/boot.nix | 2 | ||||
| -rw-r--r-- | hermes/nixos/gui/plasma.nix | 2 | ||||
| -rw-r--r-- | hermes/nixos/gui/xfce.nix | 5 | ||||
| -rw-r--r-- | hermes/nixos/programs/default.nix | 3 |
4 files changed, 10 insertions, 2 deletions
diff --git a/hermes/nixos/boot.nix b/hermes/nixos/boot.nix index fc3a64a..73c1469 100644 --- a/hermes/nixos/boot.nix +++ b/hermes/nixos/boot.nix @@ -21,6 +21,8 @@ efi.canTouchEfiVariables = true; }; + supportedFilesystems = [ "exfat" "ntfs" ]; + plymouth = { enable = true; theme = "bgrt"; diff --git a/hermes/nixos/gui/plasma.nix b/hermes/nixos/gui/plasma.nix index c73e028..fb6afad 100644 --- a/hermes/nixos/gui/plasma.nix +++ b/hermes/nixos/gui/plasma.nix @@ -11,7 +11,7 @@ flatpak-kcm ]; - # Excluded packages + # Excluded environment.plasma6.excludePackages = with pkgs.kdePackages; [ plasma-browser-integration elisa okular discover diff --git a/hermes/nixos/gui/xfce.nix b/hermes/nixos/gui/xfce.nix index c4e2064..0bb5a61 100644 --- a/hermes/nixos/gui/xfce.nix +++ b/hermes/nixos/gui/xfce.nix @@ -19,5 +19,10 @@ xfce.thunar-archive-plugin xfce.thunar-media-tags-plugin xfce.thunar-vcs-plugin xfce.thunar-volman xarchiver ]; + + # Excluded + environment.xfce.excludePackages = with pkgs; [ + xfce.parole + ]; }; } diff --git a/hermes/nixos/programs/default.nix b/hermes/nixos/programs/default.nix index 71b660e..fd5f9c2 100644 --- a/hermes/nixos/programs/default.nix +++ b/hermes/nixos/programs/default.nix @@ -9,7 +9,8 @@ # Packages environment.systemPackages = with pkgs; [ - firefox thunderbird keepassxc kdePackages.kleopatra veracrypt + librewolf thunderbird + keepassxc kdePackages.kleopatra veracrypt electrum feather vlc ffmpeg yt-dlp alacritty zed-editor tmux vim |
