diff options
-rw-r--r-- | usecases/desktop/graphical/sway.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usecases/desktop/graphical/sway.nix b/usecases/desktop/graphical/sway.nix index 6c5b2ed..ab04de3 100644 --- a/usecases/desktop/graphical/sway.nix +++ b/usecases/desktop/graphical/sway.nix | |||
@@ -25,7 +25,7 @@ in | |||
25 | # when not specifying variables. | 25 | # when not specifying variables. |
26 | # | 26 | # |
27 | # TODO: make PR | 27 | # TODO: make PR |
28 | #systemdIntegration = true; | 28 | systemdIntegration = false; |
29 | wrapperFeatures.gtk = true; | 29 | wrapperFeatures.gtk = true; |
30 | 30 | ||
31 | config = { | 31 | config = { |
@@ -156,9 +156,9 @@ in | |||
156 | startup = [ | 156 | startup = [ |
157 | { command = "${pkgs.mako}/bin/mako"; always = true; } | 157 | { command = "${pkgs.mako}/bin/mako"; always = true; } |
158 | { | 158 | { |
159 | command = "systemctl --user import-environment ${ | 159 | command = "\"systemctl --user import-environment ${ |
160 | builtins.toString (lib.unique config.xsession.importedVariables) | 160 | builtins.toString (lib.unique config.xsession.importedVariables) |
161 | }; systemctl --user start sway-session.target"; | 161 | }; systemctl --user start sway-session.target\""; |
162 | } | 162 | } |
163 | ]; | 163 | ]; |
164 | 164 | ||
@@ -167,7 +167,6 @@ in | |||
167 | window = { | 167 | window = { |
168 | border = 2; | 168 | border = 2; |
169 | hideEdgeBorders = "smart"; | 169 | hideEdgeBorders = "smart"; |
170 | titlebar = true; | ||
171 | }; | 170 | }; |
172 | }; | 171 | }; |
173 | }; | 172 | }; |
@@ -251,6 +250,8 @@ in | |||
251 | }; | 250 | }; |
252 | }; | 251 | }; |
253 | 252 | ||
253 | # TODO: polkit gnome | ||
254 | |||
254 | environment.systemPackages = with pkgs; [ qt5.qtwayland ]; | 255 | environment.systemPackages = with pkgs; [ qt5.qtwayland ]; |
255 | 256 | ||
256 | # TODO: in 21.05 | 257 | # TODO: in 21.05 |