run nix fmt

This commit is contained in:
jopejoe1 2024-07-10 23:02:54 +02:00
parent eab8e4b1d8
commit d5cbe31c02
61 changed files with 1299 additions and 830 deletions

View file

@ -1,7 +1,9 @@
{ config, lib, ... }:
let cfg = config.jopejoe1.plasma;
in {
let
cfg = config.jopejoe1.plasma;
in
{
options.jopejoe1.plasma = {
enable = lib.mkEnableOption "Enable KDE Plasma";
};
@ -24,9 +26,10 @@ in {
};
};
programs.kdeconnect = { enable = true; };
programs.kdeconnect = {
enable = true;
};
networking.networkmanager.enable = true;
};
}