diff options
author | sefidel <contact@sefidel.net> | 2023-03-09 00:50:20 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-03-09 00:50:20 +0900 |
commit | fed1f04b1ee97aa44855bce2f15c42563d5775cc (patch) | |
tree | ac05afab1545f75cdbb2bd0e43991bb7c3987ba4 /home | |
parent | 8e70a3627f01cca4b907270454ad05163a7406ef (diff) | |
download | nixrc-fed1f04b1ee97aa44855bce2f15c42563d5775cc.tar.gz nixrc-fed1f04b1ee97aa44855bce2f15c42563d5775cc.zip |
feat(home/base): set XDG_CURRENT_DESKTOP
Diffstat (limited to 'home')
-rw-r--r-- | home/profiles/base/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix index 53c1847..8efc411 100644 --- a/home/profiles/base/default.nix +++ b/home/profiles/base/default.nix @@ -122,6 +122,10 @@ in keybindings = { }; }; + extraSessionCommands = '' + export XDG_CURRENT_DESKTOP=sway; + ''; + extraConfig = import ./config/sway.nix { inherit pkgs neotheme; }; }; |