Setup WSL Host

This commit is contained in:
2025-01-21 04:32:14 +00:00
commit c7bcd25914
8 changed files with 183 additions and 0 deletions

25
nix/users/luca/home.nix Executable file
View File

@@ -0,0 +1,25 @@
{ config, pkgs, ... }:
{
home.username = "luca";
home.homeDirectory = "/home/luca";
programs = {
git = import ./git.nix;
zsh = import ./zsh.nix;
tmux = import ./tmux.nix { inherit pkgs; };
helix = import ./helix.nix { inherit pkgs; };
};
home.packages = with pkgs; [
nodePackages_latest.typescript-language-server
nodejs_22
pnpm
gh
oh-my-posh
];
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}