This commit is contained in:
TheWanderingCrow 2025-03-13 09:33:14 -04:00
parent 82169a4c33
commit 7cb51dcf8d
4 changed files with 14 additions and 6 deletions

View file

@ -1,6 +1,8 @@
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;
programs = {
direnv = {
enable = true;
nix-direnv.enable = true;
};
};
}

View file

@ -0,0 +1,5 @@
{
programs.zsh = {
enable = true;
};
}

View file

@ -26,8 +26,9 @@ in {
./configs/waybar.nix
./configs/tmux.nix
./configs/git.nix
./configs/direnv.nix
./configs/ssh.nix
./configs/zsh.nix
./configs/direnv.nix
];
home = {
username = "crow";

View file

@ -4,7 +4,7 @@
config,
...
}: {
config.users.users.crow = lib.mkIf config.user.crow.enable {
users.users.crow = lib.mkIf config.user.crow.enable {
isNormalUser = true;
initialPassword = "changeme";
extraGroups = ["wheel" "networkmanager" "audio" "plugdev" "dialout"];
@ -13,5 +13,5 @@
];
};
config.home-manager.users.crow = lib.mkIf config.user.crow.home.enable ./home.nix;
home-manager.users.crow = lib.mkIf config.user.crow.home.enable ./home.nix;
}