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

17 lines
403 B
Nix
Raw Normal View History

{ pkgs, ... }: {
imports = [
./common/wezterm
./common/alacritty.nix
];
# Other packages I want to install:
home.packages = with pkgs; [
vimclip # Vim anywhere!
];
2023-03-12 05:24:25 +01:00
2023-05-24 03:17:09 +02:00
stylix.targets.gtk.enable = true;
# Command required to get the xdg stuff to work. Suggested by @lily on discord.
xsession.initExtra = "${pkgs.dbus}/bin/dbus-update-activation-environment --systemd --all";
2023-01-10 02:38:06 +01:00
}