Overhaul luna complete
This commit is contained in:
parent
06f5971965
commit
6f9fdca876
110 changed files with 2408 additions and 2129 deletions
39
modules/wm/plasma/default.nix
Normal file
39
modules/wm/plasma/default.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkEnableOption mkIf mkOption types;
|
||||
cfg = config.horseman.wm.plasma;
|
||||
in {
|
||||
options = {
|
||||
horseman.wm.plasma = {
|
||||
enable = mkEnableOption "Plasma 6";
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
services = {
|
||||
xserver.enable = true;
|
||||
|
||||
desktopManager.plasma6.enable = true;
|
||||
displayManager = {
|
||||
sddm.autoNumlock = true;
|
||||
};
|
||||
|
||||
power-profiles-daemon.enable = true;
|
||||
};
|
||||
|
||||
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
||||
kate
|
||||
konsole
|
||||
];
|
||||
|
||||
home-manager.users.horseman = {
|
||||
imports = [./config.nix];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue