Regenerated
This commit is contained in:
+9
-7
@@ -1102,20 +1102,22 @@ in
|
||||
** =generated/modules/apps/thunar.nix=
|
||||
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
|
||||
#+BEGIN_SRC nix :tangle generated/modules/apps/thunar.nix :noweb tangle :mkdirp yes :eval never-html
|
||||
{ pkgs, config, ... }:
|
||||
{ pkgs, config, lib, ... }:
|
||||
|
||||
let
|
||||
username = config.defaultUser or "henrov";
|
||||
in
|
||||
{
|
||||
# Install Thunar and related packages system-wide
|
||||
environment.systemPackages = [
|
||||
pkgs.thunar
|
||||
pkgs.thunar-plugins
|
||||
pkgs.xarchiver
|
||||
# Install Thunar and essential plugins
|
||||
environment.systemPackages = with pkgs; [
|
||||
thunar # main file manager
|
||||
thunar-archive-plugin # archive support (zip, tar, etc.)
|
||||
thunar-volman # auto-mount removable drives
|
||||
gvfs # virtual filesystem for external drives
|
||||
xarchiver # optional GUI archive manager
|
||||
];
|
||||
|
||||
# If you want session variables for Thunar, do it via Home Manager
|
||||
# Home Manager session variables
|
||||
home-manager.users.${username} = {
|
||||
home.sessionVariables = {
|
||||
FILE_MANAGER = "thunar";
|
||||
|
||||
Reference in New Issue
Block a user