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