nixfmt all

This commit is contained in:
Noa Aarts 2024-11-07 20:48:01 +01:00
parent 980500842d
commit 42238dc24f
Signed by: noa
GPG key ID: 1850932741EFF672
20 changed files with 333 additions and 245 deletions

View file

@ -1,4 +1,10 @@
{ config, lib, pkgs, inputs, ... }:
{
config,
lib,
pkgs,
inputs,
...
}:
let
cfg = config.modules.plasma;
in
@ -7,13 +13,12 @@ in
enable = lib.mkEnableOption "enable kde plasma 6";
};
config = lib.mkIf cfg.enable {
services = {
desktopManager.plasma6.enable = true;
displayManager.defaultSession = "hyprland";
};
services = {
desktopManager.plasma6.enable = true;
displayManager.defaultSession = "hyprland";
};
xdg.portal.config.common.default = "*";
};
xdg.portal.config.common.default = "*";
};
}