mirror of
https://github.com/nix-community/plasma-manager.git
synced 2024-11-29 15:03:49 +03:00
3f1589c384
Some checks failed
GitHub Pages / publish (ubuntu-latest) (push) Has been cancelled
Co-authored-by: Heitor Augusto <IAm.HeitorALN@proton.me>
28 lines
463 B
Nix
28 lines
463 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./apps
|
|
./desktop.nix
|
|
./files.nix
|
|
./fonts.nix
|
|
./hotkeys.nix
|
|
./input.nix
|
|
./krunner.nix
|
|
./kscreenlocker.nix
|
|
./kwin.nix
|
|
./panels.nix
|
|
./powerdevil.nix
|
|
./shortcuts.nix
|
|
./spectacle.nix
|
|
./startup.nix
|
|
./window-rules.nix
|
|
./windows.nix
|
|
./workspace.nix
|
|
];
|
|
|
|
options.programs.plasma.enable = lib.mkEnableOption ''
|
|
Enable configuration management for KDE Plasma.
|
|
'';
|
|
}
|