1
Fork 0
satellite/home/adrielus/features/desktop/xmonad.nix
2023-03-12 05:24:25 +01:00

22 lines
386 B
Nix

{ pkgs, ... }: {
imports = [
./common/rofi
./common/polybar
./common/eww
./common/alacritty.nix
./common/feh.nix
];
# Other packages I want to install:
home.packages = with pkgs; [
vimclip # Vim anywhere!
xclip # Clipboard stuff
spectacle # Take screenshots
];
stylix.targets = {
xresources.enable = true;
gtk.enable = true;
};
}