nix-config/home/desktop-river/default.nix

50 lines
966 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
2022-09-26 16:02:29 +02:00
{
2023-01-29 19:59:36 +01:00
imports = [
./bemenu.nix
./foot.nix
2023-02-06 16:38:52 +01:00
./init.nix
./kanshi.nix
./kile.nix
2023-01-29 19:59:36 +01:00
./mako.nix
2023-02-06 16:38:52 +01:00
./swaybg.nix
2023-01-29 19:59:36 +01:00
./swaylock.nix
2023-02-06 16:38:52 +01:00
./waybar.nix
2023-01-29 19:59:36 +01:00
];
2022-12-30 23:29:43 +01:00
home.packages = with pkgs; [
glib
gsettings-desktop-schemas
imv
2023-02-03 17:41:33 +01:00
kile-wl
2022-12-30 23:29:43 +01:00
light
pamixer
playerctl
river
swaybg
wl-clipboard
2023-01-07 20:05:55 +01:00
wtype
2022-12-30 23:29:43 +01:00
xdg-utils
];
2022-09-26 16:02:29 +02:00
programs.zsh.loginExtra = ''
2023-02-03 17:41:33 +01:00
if [[ -z "''${DISPLAY}" ]] && [[ "''${XDG_VTNR}" -eq 1 ]]; then
2022-09-26 16:02:29 +02:00
exec ${pkgs.river}/bin/river
2023-02-03 17:41:33 +01:00
fi
2022-09-26 16:02:29 +02:00
'';
2022-12-30 18:54:52 +01:00
2023-02-06 16:38:52 +01:00
home.sessionVariables.XKB_DEFAULT_LAYOUT = "us";
home.sessionVariables.XKB_DEFAULT_VARIANT = "altgr-intl";
home.sessionVariables.XKB_DEFAULT_OPTIONS = "caps:escape";
systemd.user.targets.river-session = {
Unit = {
Description = "river window manager session";
BindsTo = "graphical-session.target";
Wants = "graphical-session-pre.target";
After = "graphical-session-pre.target";
};
2022-12-30 18:54:52 +01:00
};
2022-09-26 16:02:29 +02:00
}