1
Fork 0
satellite/home/adrielus/features/desktop/xmonad.nix
Matei Adriel 1cd3d7a903
Hyprland
2023-05-24 03:17:09 +02:00

17 lines
403 B
Nix

{ pkgs, ... }: {
imports = [
./common/wezterm
./common/alacritty.nix
];
# Other packages I want to install:
home.packages = with pkgs; [
vimclip # Vim anywhere!
];
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";
}