diff --git a/README.md b/README.md index 3ebf3a6..9fcdfbc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# My NixOS Configurations ❄️👨‍💻 +# My Nix Configurations ❄️‍💻 -My modular NixOS🔥 +My modular Nix configs🔥 If you need a list of available packages and options: @@ -16,17 +16,16 @@ Take inspiration💡, borrow ideas💭 and customize it to your 💖 content ## Requirements ⚙️ -- [Nix package manager](https://www.nixos.org/)❄️ -- [Nix 2.0 `flakes` enabled](https://nixos.wiki/wiki/Flakes#Enable_flakes_permanently_in_NixOS)⚡️ -- *optional*[home-manager installed](https://nix-community.github.io/home-manager/index.xhtml#sec-flakes-standalone) +- [Nix package manager](https://www.nixos.org/) +- [Nix 2.0 `flakes` enabled](https://nixos.wiki/wiki/Flakes#Enable_flakes_permanently_in_NixOS) +- [home-manager installed](https://nix-community.github.io/home-manager/index.xhtml#sec-flakes-standalone)*optional* # End-Points Exposed ❄️🔧💻️❄️ NixOS Configurations: - desktop - - server - - laptop (wip) - wsl + - server (wip) Home-Manager Configurations: - workstation diff --git a/flake.nix b/flake.nix index 6f67574..582e8e2 100644 --- a/flake.nix +++ b/flake.nix @@ -36,7 +36,7 @@ ]; }; - windows = nixpkgs.lib.nixosSystem { + wsl = nixpkgs.lib.nixosSystem { inherit system pkgs; modules = [ ./src/system/machines/wsl diff --git a/src/system/machines/wsl/home.nix b/src/system/machines/wsl/home.nix index 80f34b1..7b207e4 100644 --- a/src/system/machines/wsl/home.nix +++ b/src/system/machines/wsl/home.nix @@ -10,7 +10,7 @@ programs.home-manager.enable = true; programs.bash.shellAliases = { - nixup = "sudo nixos-rebuild switch --flake /etc/nixos/.#windows"; + nixup = "sudo nixos-rebuild switch --flake /etc/nixos/.#wsl"; }; home.stateVersion = "23.11";