diff --git a/src/system/machines/desktop/modules/home-manager/home.nix b/src/system/machines/desktop/modules/home-manager/home.nix index a9800cc..b78387b 100644 --- a/src/system/machines/desktop/modules/home-manager/home.nix +++ b/src/system/machines/desktop/modules/home-manager/home.nix @@ -11,7 +11,7 @@ nixup = "sudo nixos-rebuild switch --flake /etc/nixos/.#desktop"; }; - home.stateVersion = "22.11"; + home.stateVersion = "23.11"; home.username = "${config.user.name}"; home.homeDirectory = "/home/${config.user.name}"; diff --git a/src/user/modules/gui/desktopEnvironments/sway/config/sway.nix b/src/user/modules/gui/desktopEnvironments/sway/config/sway.nix index c5d0ee6..5826473 100644 --- a/src/user/modules/gui/desktopEnvironments/sway/config/sway.nix +++ b/src/user/modules/gui/desktopEnvironments/sway/config/sway.nix @@ -61,8 +61,15 @@ in inner = 10; }; - floating.border = 0; - window.border= 0; + floating = { + titlebar = false; + border = 0; + }; + + window = { + titlebar = false; + border= 0; + }; keybindings = lib.mkOptionDefault { "${modifier}+q" = "kill";