nixos/modules/home/chn.nix
2023-06-24 23:02:08 +08:00

17 lines
298 B
Nix

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;
};
};
};
}