nixos/home/desktop/xfce.nix

17 lines
277 B
Nix

{...}: {
imports = [
./gtk.nix
./picom.nix
./rofi.nix
./polybar.nix
];
xfconf.settings = {
xfce4-session = {
"general/LockCommand" = "i3lock-fancy";
};
xsettings = {
"Gtk/MonospaceFontName" = "FiraCode Nerd Font 12";
};
};
}