Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: remove microvm

This has beem commited to the wrong branch

cosmeak 03435b98 c5b9761e

-13
-13
flake.nix
··· 19 19 url = "github:nix-community/home-manager/release-24.05"; 20 20 inputs.nixpkgs.follows = "nixpkgs"; 21 21 }; 22 - microvm = { 23 - url = "github:astro/microvm.nix"; 24 - inputs.nixpkgs.follows = "nixpkgs"; 25 - }; 26 22 }; 27 23 28 24 outputs = inputs@{ self, nixpkgs, nixpkgs-unstable, darwin, nixos-wsl, home-manager, microvm, ... }: ··· 72 68 nyx = nixpkgs.lib.nixosSystem { 73 69 specialArgs = { inherit inputs outputs; }; 74 70 modules = [ ./hosts/nyx/configuration.nix ]; 75 - }; 76 - 77 - beowulf = nixpkgs.lib.nixosSystem { 78 - system = "x86_64-linux"; 79 - specialArgs = { inherit inputs outputs; }; 80 - modules = [ 81 - microvm.nixosModules.host 82 - ./hosts/beowulf/configuration.nix 83 - ]; 84 71 }; 85 72 }; 86 73