2023-01-12 20:49:08 +01:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
imports = [
|
2023-04-01 21:29:47 +02:00
|
|
|
./common/wezterm
|
2023-01-12 20:49:08 +01:00
|
|
|
./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
|
|
|
}
|