1
Fork 0
satellite/home/adrielus/features/desktop/xmonad.nix

22 lines
386 B
Nix
Raw Normal View History

{ pkgs, ... }: {
imports = [
./common/rofi
./common/polybar
./common/eww
./common/alacritty.nix
2023-03-12 05:24:25 +01:00
./common/feh.nix
];
# Other packages I want to install:
home.packages = with pkgs; [
vimclip # Vim anywhere!
xclip # Clipboard stuff
spectacle # Take screenshots
];
2023-03-12 05:24:25 +01:00
stylix.targets = {
xresources.enable = true;
gtk.enable = true;
};
2023-01-10 02:38:06 +01:00
}