diff options
author | Alan Pearce | 2017-11-24 15:36:54 +0100 |
---|---|---|
committer | Alan Pearce | 2017-11-24 15:36:54 +0100 |
commit | 2a2817b7af09588e484226326a81bcb3ab5581cb (patch) | |
tree | cd1db2ae2f64b6c2c11323bfa80b297ed707639d /modules/programs | |
parent | 4773e323ed24f05c1b465623f9ae4ee71e59c0b6 (diff) | |
download | nixos-configuration-2a2817b7af09588e484226326a81bcb3ab5581cb.tar.lz nixos-configuration-2a2817b7af09588e484226326a81bcb3ab5581cb.tar.zst nixos-configuration-2a2817b7af09588e484226326a81bcb3ab5581cb.zip |
i3: Run dunst and sxhkd
Diffstat (limited to 'modules/programs')
-rw-r--r-- | modules/programs/i3.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/programs/i3.nix b/modules/programs/i3.nix index 3bba3bb..76dc66d 100644 --- a/modules/programs/i3.nix +++ b/modules/programs/i3.nix @@ -3,6 +3,10 @@ { services.xserver.windowManager.i3 = { enable = true; package = pkgs.i3-gaps; + extraSessionCommands = '' + ${pkgs.dunst}/bin/dunst & + ${pkgs.sxhkd}/bin/sxhkd & + ''; }; environment.systemPackages = with pkgs; [ |