nixos/modules/home/chn.nix
2023-06-24 21:26:41 +08:00

17 lines
312 B
Nix

{ pkgs, ... }@inputs:
{
config =
{
home-manager.users.chn = { pkgs, ... }:
{
imports = [ inputs.topInputs.plasma-manager.homeManagerModules.plasma-manager ];
home.stateVersion = "22.11";
programs =
{
zsh = import ./zsh.nix { inherit pkgs; };
plasma = import ./kde.nix;
};
};
};
}