nixos/modules/home/chn.nix

17 lines
309 B
Nix
Raw Normal View History

2023-06-15 19:12:25 +08:00
{ pkgs, ... }@inputs:
2023-06-09 21:23:19 +08:00
{
2023-06-15 19:12:25 +08:00
config =
2023-06-09 21:23:19 +08:00
{
2023-06-15 19:12:25 +08:00
home-manager.users.chn = { pkgs, ... }:
{
imports = [ inputs.inputs.plasma-manager.homeManagerModules.plasma-manager ];
home.stateVersion = "22.11";
2023-06-16 13:13:00 +08:00
programs =
{
zsh = import ./zsh.nix { inherit pkgs; };
plasma = import ./kde.nix;
};
2023-06-15 19:12:25 +08:00
};
2023-06-09 21:23:19 +08:00
};
}