Compare commits

...

3 commits

4 changed files with 18 additions and 14 deletions

View file

@ -641,15 +641,15 @@ in
(match [
{
app-id = "^steam$";
title = "^notification.*$";
title = "^notificationtoasts_\\d+_desktop$";
}
])
(leaf "open-floating" [ true ])
(leaf "open-focused" [ false ])
(leaf "default-floating-position" [
{
x = 0;
y = 0;
x = 10;
y = 10;
"relative-to" = "bottom-right";
}
])

View file

@ -50,6 +50,7 @@ in
wl-clipboard
cliphist
swayimg
seahorse
])
++ [ niri ];
qt = {

View file

@ -0,0 +1,9 @@
{ lib, ... }:
{
config.specialisation.cosmic = {
inheritParentConfig = true;
configuration = {
youthlic.gui.enabled = lib.mkForce "cosmic";
};
};
}

View file

@ -8,18 +8,12 @@ let
in
{
config = lib.mkIf (cfg.enabled == "cosmic") {
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
services.xserver = {
display = 0;
enable = true;
xkb = {
layout = "us";
variant = "";
services = {
desktopManager.cosmic = {
enable = true;
xwayland.enable = true;
};
displayManager.cosmic-greeter.enable = true;
};
services.desktopManager.cosmic.enable = true;
services.displayManager.cosmic-greeter.enable = true;
};
}