Working on reshuffling

This commit is contained in:
2026-03-19 07:02:18 +00:00
parent 2b20d3947f
commit 6656be88fb
2 changed files with 62 additions and 44 deletions
+31 -22
View File
@@ -1,32 +1,41 @@
{
config,
pkgs,
lib,
...
}:
{ lib, pkgs, ... }:
let
username = "henrov"; # vervang door je echte gebruikersnaam
in
{
home-manager.users.${username} = {
flake.nixosModules.thunar = { config, pkgs, lib, ... }:
# Thunar and plugins
home.packages = with pkgs; [
thunar
thunar-volman
thunar-archive-plugin
thunar-media-tags-plugin
tumbler
ffmpegthumbnailer
gvfs
xdg-utils
];
{
options.mySystem.apps.thunar.enable =
lib.mkEnableOption "Enable Thunar file manager";
# Default file manager
xdg.mimeApps = {
defaultApplications = {
"inode/directory" = "Thunar.desktop";
config = lib.mkIf (config.mySystem.apps.thunar.enable or false) {
# --- Home Manager gebruiker ---
home-manager.users.${username} = {
home.stateVersion = "25.11";
home.username = username;
home.homeDirectory = "/home/${username}";
# --- Thunar en plugins ---
home.packages = with pkgs; [
thunar
thunar-volman
thunar-archive-plugin
thunar-media-tags-plugin
tumbler
ffmpegthumbnailer
gvfs
xdg-utils
];
# --- Default file manager ---
xdg.mimeApps = {
defaultApplications = {
"inode/directory" = "Thunar.desktop";
};
};
};
};
};