initial setup of plasma-manager

This commit is contained in:
Chris Kruining 2024-08-13 22:38:15 +02:00
parent eff9d545e0
commit 9033e01b07
6 changed files with 113 additions and 6 deletions

View file

@ -1,4 +1,4 @@
{ config, options, lib, pkgs, ... }:
{ inputs, config, options, lib, pkgs, ... }:
let
inherit (builtins) elem isList pathExists toString;
inherit (lib.attrsets) mapAttrs mapAttrsToList;
@ -35,7 +35,8 @@ in
in
{
inherit name;
description = "Primary user account";
# description = "Primary user account";
description = "Chris Kruining";
extraGroups = [ "wheel" ];
isNormalUser = true;
home = "/home/${name}";
@ -46,6 +47,7 @@ in
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
sharedModules = [ inputs.plasma-manager.homeManagerModules.plasma-manager ];
};
home = {