config-perso/kat/users/default.nix

23 lines
450 B
Nix
Raw Normal View History

2024-11-08 08:26:07 +01:00
{ config, sources, ... }:
2024-09-26 11:51:04 +02:00
let
zsh = import ./zsh.nix;
in
{
imports = [ (import ./zsh.nix).system ];
home-manager.sharedModules = [
{
imports = [
zsh.user
2024-11-13 16:56:33 +01:00
./neovim.nix
2024-11-01 15:11:35 +01:00
((import sources.nixvim).homeManagerModules.nixvim)
];
# options.kat = {
# ssh = mkEnableOption "ssh configuration";
# };
config = {
home.stateVersion = config.system.stateVersion;
};
}
];
2024-09-26 11:51:04 +02:00
}