rename "home" directory to "home-manager"

My dotfiles will be moved to the "home" directory later
This commit is contained in:
2025-06-10 21:32:23 +02:00
parent ee2b9fa9e0
commit 3144febfad
16 changed files with 13 additions and 13 deletions

21
home-manager/dev.nix Normal file
View File

@@ -0,0 +1,21 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
devenv
direnv
hut
nix-output-monitor
radicle-node
typescript-language-server
nil # Nix language server
nixfmt-rfc-style
];
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
xdg.configFile."hut/config".source = "${config.dotfiles.path}/.config/hut/config";
}