mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
feat: add thunar
This commit is contained in:
parent
7d03a4f5c3
commit
71ccc41ac9
2 changed files with 14 additions and 4 deletions
|
@ -13,7 +13,7 @@
|
||||||
exec-once = [ "uwsm app -- firefox" "kime" ];
|
exec-once = [ "uwsm app -- firefox" "kime" ];
|
||||||
|
|
||||||
"$terminal" = "uwsm app -- kitty";
|
"$terminal" = "uwsm app -- kitty";
|
||||||
"$fileManager" = "uwsm app -- kitty yazi";
|
"$fileManager" = "uwsm app -- thunar";
|
||||||
"$menu" = "uwsm app -- $(tofi-drun)";
|
"$menu" = "uwsm app -- $(tofi-drun)";
|
||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,10 @@
|
||||||
type = "kime";
|
type = "kime";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
services.xserver = {
|
||||||
|
xkb.layout = "us";
|
||||||
|
videoDrivers = [ "nvidia" ];
|
||||||
|
};
|
||||||
|
|
||||||
users.users.toast = {
|
users.users.toast = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
@ -53,10 +57,16 @@
|
||||||
withUWSM = true;
|
withUWSM = true;
|
||||||
xwayland.enable = true;
|
xwayland.enable = true;
|
||||||
};
|
};
|
||||||
services.xserver = {
|
programs.thunar = {
|
||||||
xkb.layout = "us";
|
enable = true;
|
||||||
videoDrivers = [ "nvidia" ];
|
plugins = with pkgs.xfce; [
|
||||||
|
thunar-volman
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
programs.xfconf.enable = true;
|
||||||
|
services.gvfs.enable = true; # Mount, trash, and other functionalities
|
||||||
|
services.tumbler.enable = true; # Thumbnail support for images
|
||||||
|
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
# WLR_NO_HARDWARE_CURSORS = "1";
|
# WLR_NO_HARDWARE_CURSORS = "1";
|
||||||
NIXOS_OZONE_WL = "1";
|
NIXOS_OZONE_WL = "1";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue