plasma-manager/modules/default.nix

24 lines
390 B
Nix
Raw Normal View History

2022-06-22 22:10:51 +03:00
{ lib, ... }:
{
imports = [
2024-06-20 19:39:59 +03:00
./apps
2022-06-22 22:10:51 +03:00
./files.nix
2024-06-20 19:39:59 +03:00
./fonts.nix
./hotkeys.nix
2024-06-20 19:39:59 +03:00
./kscreenlocker.nix
./kwin.nix
./panels.nix
2022-06-23 02:53:37 +03:00
./shortcuts.nix
2023-11-05 04:50:23 +03:00
./spectacle.nix
2024-06-20 19:39:59 +03:00
./startup.nix
2022-06-22 22:10:51 +03:00
./windows.nix
./window-rules.nix
2022-06-22 22:10:51 +03:00
./workspace.nix
];
options.programs.plasma.enable = lib.mkEnableOption ''
Enable configuration management for KDE Plasma.
'';
}