configurations for my servers and desktops
nix nixos flake dots dotfiles

chore: remove wsl

-16
-11
flake.nix
··· 15 15 inputs.nixpkgs.follows = "nixpkgs"; 16 16 }; 17 17 mac-app-util.url = "github:hraban/mac-app-util"; 18 - nixos-wsl.url = "github:nix-community/NixOS-WSL"; 19 18 agenix.url = "github:ryantm/agenix"; 20 19 }; 21 20 ··· 58 57 ./hosts/bluepill 59 58 agenix.nixosModules.default 60 59 home-manager.nixosModules.home-manager 61 - ]; 62 - }; 63 - 64 - tank-wsl = nixpkgs.lib.nixosSystem { 65 - modules = [ 66 - ./modules/common 67 - ./modules/nixos 68 - ./hosts/tank-wsl 69 - home-manager.nixosModules.home-manager 70 - nixos-wsl.nixosModules.default 71 60 ]; 72 61 }; 73 62 };
-5
hosts/tank-wsl/default.nix
··· 1 - {...}: { 2 - wsl.enable = true; 3 - wsl.defaultUser = "devin"; 4 - system.stateVersion = "25.05"; 5 - }