nixos/home/desktop/xfce.nix

26 lines
435 B
Nix

{pkgs, ...}: {
imports = [
./gtk.nix
./bspwm.nix
./sxhkd.nix
./picom.nix
./rofi.nix
./polybar.nix
];
home.packages = with pkgs; [
xfce.thunar
ranger
flameshot
power-profiles-daemon
i3lock-fancy
];
xfconf.settings = {
xfce4-session = {
"general/LockCommand" = "i3lock-fancy";
};
xsettings = {
"Gtk/MonospaceFontName" = "FiraCode Nerd Font 12";
};
};
}