thunar overlay test

This commit is contained in:
2024-03-03 23:06:39 +01:00
parent 5f4dacd956
commit 0b11bb2b15
5 changed files with 18 additions and 16 deletions

View File

@@ -51,6 +51,8 @@
}; };
# Enable CUPS to print. # Enable CUPS to print.
printing.enable = true; printing.enable = true;
# For Samba support in Nautilus.
gvfs.enable = true;
}; };
# Define a user account. # Define a user account.
@@ -75,6 +77,12 @@
curl curl
alacritty alacritty
dmenu dmenu
gnome.nautilus
lxqt.lxqt-policykit # provides a default authentication client for policykit
#libsForQt5.dolphin
#libsForQt5.kdegraphics
]; ];
# Enable zsh for setting it as shell for users. # Enable zsh for setting it as shell for users.

View File

@@ -26,7 +26,10 @@
useUserPackages = true; useUserPackages = true;
users.elias = import ./home/default.nix; users.elias = import ./home/default.nix;
}; };
nixpkgs.overlays = [ inputs.neovim-nightly-overlay.overlay ]; nixpkgs.overlays = [
inputs.neovim-nightly-overlay.overlay
./home/overlays/nautilus.nix
];
} }
]; ];
}; };

View File

@@ -0,0 +1,6 @@
{ ... }:
final: prev: {
nautilus = prev.nautilus.override { rev = 3.34 0.3; };
}

View File

@@ -1,7 +1,6 @@
{ {
imports = [ imports = [
./alacritty ./alacritty
./thunar
./neovim ./neovim
./git.nix ./git.nix
./wallpaper.nix ./wallpaper.nix

View File

@@ -1,14 +0,0 @@
{ pkgs, ... }:
{
programs.xfconf.enable = true;
programs.thunar.enable = true;
programs.thunar.plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
services = {
gvfs.enable = true; # Mount, trash, ...
tumbler.enable = true; # Thumbnail support for images.
};
}