thunar: enable plugins
This commit is contained in:
parent
b38dce323a
commit
9c9ebff974
|
@ -2,7 +2,14 @@
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
{ config, pkgs, inputs, ... }: {
|
{ config, pkgs, inputs, ... }: {
|
||||||
imports = [ ./gamemode.nix ./cachix.nix ./media-packages.nix ./boot.nix ./vpn.nix ];
|
imports = [
|
||||||
|
./gamemode.nix
|
||||||
|
./cachix.nix
|
||||||
|
./media-packages.nix
|
||||||
|
./boot.nix
|
||||||
|
./vpn.nix
|
||||||
|
./thunar.nix
|
||||||
|
];
|
||||||
packages.media-packages.enable = true;
|
packages.media-packages.enable = true;
|
||||||
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
@ -103,11 +110,6 @@
|
||||||
|
|
||||||
programs.dzgui.enable = true;
|
programs.dzgui.enable = true;
|
||||||
|
|
||||||
# TODO: enable thunar plugins
|
|
||||||
# programs.thunar.enable = true;
|
|
||||||
# programs.thunar.plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
|
|
||||||
services.gvfs.enable = true; # Mount, trash, and other functionalities
|
|
||||||
services.tumbler.enable = true; # Thumbnail support for images
|
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
|
13
system/thunar.nix
Normal file
13
system/thunar.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ config, pkgs, inputs, ... }: {
|
||||||
|
programs.thunar = {
|
||||||
|
enable = true;
|
||||||
|
plugins = with pkgs.xfce; [
|
||||||
|
thunar-archive-plugin
|
||||||
|
thunar-volman
|
||||||
|
];
|
||||||
|
};
|
||||||
|
# Mount, trash, and other functionalities
|
||||||
|
services.gvfs.enable = true;
|
||||||
|
# Thumbnail support for images
|
||||||
|
services.tumbler.enable = true;
|
||||||
|
}
|
Loading…
Reference in a new issue