nixos/modules/home/chn.nix
2023-06-16 13:15:51 +08:00

17 lines
309 B
Nix

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