diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-01-18 14:32:18 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-01-18 14:32:18 -0800 |
| commit | d08de8bc8c422b2b78365f017a97f9e2fc7197ef (patch) | |
| tree | a343bfa538151512d92fee8a668122a7de5a2aa6 /roles/home/desktop/default.nix | |
| parent | 0f6d26214e768ca5274f1d76238c999ca91b5cbc (diff) | |
home: desktop: port i3 config to sway
Diffstat (limited to 'roles/home/desktop/default.nix')
| -rw-r--r-- | roles/home/desktop/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/home/desktop/default.nix b/roles/home/desktop/default.nix index 38b361c..6fdbb9a 100644 --- a/roles/home/desktop/default.nix +++ b/roles/home/desktop/default.nix @@ -5,7 +5,7 @@ let cfg = config.home.roles.desktop; in { imports = [ ./theme.nix - ./i3.nix + ./sway.nix ./picom.nix ./polybar.nix ./rofi.nix @@ -57,7 +57,7 @@ let cfg = config.home.roles.desktop; in { }; config = mkIf cfg.enable { - xsession.windowManager.i3.enable = true; + wayland.windowManager.sway.enable = true; gtk.enable = true; @@ -70,8 +70,8 @@ let cfg = config.home.roles.desktop; in { }; services = { - picom.enable = true; - polybar.enable = true; + #picom.enable = true; + #polybar.enable = true; flameshot.enable = cfg.screenshot; }; |