nixos/home/desktop/xfce.nix

27 lines
437 B
Nix
Raw Normal View History

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