28 lines
458 B
Nix
28 lines
458 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./xresources.nix
|
|
./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";
|
|
};
|
|
};
|
|
}
|