Restructure to allow for modularity and add home-manager with tmux and git

This commit is contained in:
caem 2024-04-04 13:49:19 +02:00
parent eff6860aa2
commit 59842a4ba4
No known key found for this signature in database
GPG key ID: F4F7229F8B860E9F
9 changed files with 110 additions and 11 deletions

View file

@ -1,17 +0,0 @@
{ config, lib, pkgs, ... }:
{
programs.zsh.enable = true;
environment.variables = {
ZDOTDIR = "${config.users.users.hu.home}/.config/zsh";
};
users.users.hu = {
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
hashedPasswordFile = "/nix/config/secrets/hu/pass";
};
# Todo: home-manager configuration
}