config-perso/kat/users/default.nix

18 lines
346 B
Nix
Raw Normal View History

2024-09-26 11:51:04 +02:00
{ config, lib, ... }:
with lib;
let
zsh = import ./zsh.nix;
in
{
imports = [ (import ./zsh.nix).system ];
home-manager.sharedModules = [{
imports = [ zsh.user ./neovim ];
# options.kat = {
# ssh = mkEnableOption "ssh configuration";
# };
config = {
home.stateVersion = config.system.stateVersion;
};
}];
}