disable picom, replace dolphin with thunar add tumbler

This commit is contained in:
Kopatz
2024-06-07 14:06:20 +02:00
parent 8adc05399c
commit a2d914dc86
4 changed files with 15 additions and 10 deletions

View File

@@ -69,7 +69,6 @@ in {
networkmanagerapplet
wayland
wl-clipboard
xfce.tumbler # for thumbnails
#qt5.qtwayland
#qt6.qmake
#qt6.qtwayland

View File

@@ -52,11 +52,18 @@ in {
#services.xserver.wacom.enable = true;
services.tumbler.enable = true; # for thumbnails
services.gvfs = {
enable = true; # for file manager, trash support, etc.
package = pkgs.gvfs;
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
keepassxc
xfce.thunar
xfce.thunar # file manager
gvfs
remmina
thunderbird
localsend

View File

@@ -1,8 +1,7 @@
{ lib, config, pkgs, ... }:
with lib;
let cfg = config.custom.graphical.stylix;
in {
options.custom.graphical.stylix = {
options.custom.graphical.stylix = with lib; {
enable = mkEnableOption "Enables stylix";
image = mkOption {
type = types.path;
@@ -32,16 +31,16 @@ in {
# https://danth.github.io/stylix/options/nixos.html
config =
let nerdfonts = pkgs.nerdfonts.override { fonts = [ "Hack" "Noto" ]; };
in mkIf cfg.enable {
in lib.mkIf cfg.enable {
home-manager = lib.mkIf config.custom.graphical.i3.enable {
home-manager = {
users.${config.mainUser.name}.stylix = {
targets.kde.enable = false;
#targets.kde.enable = lib.mkIf config.custom.graphical.i3.enable false;
base16Scheme = config.stylix.base16Scheme // cfg.override;
};
};
stylix = {
autoEnable = mkForce true;
autoEnable = lib.mkForce true;
polarity = "dark";
image = cfg.image;
override = cfg.override;