rename "home" directory to "home-manager"
My dotfiles will be moved to the "home" directory later
This commit is contained in:
21
home-manager/dev.nix
Normal file
21
home-manager/dev.nix
Normal 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";
|
||||
}
|
||||
Reference in New Issue
Block a user