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

18 lines
347 B
Nix
Raw Normal View History

{ pkgs, ... }: {
imports = [
./common/rofi
./common/polybar
./common/fonts.nix
./common/xresources.nix
./common/xwallpaper.nix
./common/alacritty.nix
];
# Other packages I want to install:
home.packages = with pkgs; [
vimclip # Vim anywhere!
xclip # Clipboard stuff
spectacle # Take screenshots
];
2023-01-10 02:38:06 +01:00
}