diff --git a/README.md b/README.md index a6f49d9..9e44b1e 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ wsl --import NixOS .\NixOS\ .\nixos-wsl.tar.gz --version 2 * Enter the distro: ```powershell -wsl -d NixOs +wsl -d NixOS ``` * Set up a channel: diff --git a/flake.nix b/flake.nix index 078cb19..9329279 100644 --- a/flake.nix +++ b/flake.nix @@ -24,7 +24,6 @@ allowUnfree = true; permittedInsecurePackages = [ # FIXME:: add any insecure packages you absolutely need here - "python-2.7.18.6" # needed for core-utils ]; }; overlays = [ diff --git a/home.nix b/home.nix index 5455fdb..1d7e4ee 100644 --- a/home.nix +++ b/home.nix @@ -22,6 +22,7 @@ htop jq killall + lunarvim mosh neovim procs @@ -39,8 +40,6 @@ # FIXME: customize these stable packages to your liking for the languages that you use # key tools - gnumake # for lunarvim - gcc # for lunarvim gh # for bootstrapping just @@ -49,7 +48,7 @@ go lua nodejs - python + python3 typescript # rust stuff diff --git a/wsl.nix b/wsl.nix index 023def4..94be485 100644 --- a/wsl.nix +++ b/wsl.nix @@ -8,6 +8,10 @@ }: { networking.hostName = "${hostname}"; + systemd.tmpfiles.rules = [ + "d /home/${username}/.config/lvim 0755 ${username} users" + ]; + # FIXME: change your shell here if you don't want zsh programs.zsh.enable = true; environment.pathsToLink = ["/share/zsh"];