my system configurations ^-^
0
fork

Configure Feed

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

feat(hosts/zinnia): init (#5)

* feat(hosts/zinnia): init

* refactor(hosts/zinnia): add to flake

* fix: zinnia

* fix: forgot to add input

* chore: reduce inputs

* docs(README): add zinnia

authored by

willow and committed by
GitHub
c3701df7 cf81e846

+25
+1
README.md
··· 72 72 - `earthy`: ThinkPad X1 Yoga Gen 4 73 73 - `anemone`: Raspberry Pi 3B+ 74 74 - `lily`: Portable Recovery ISO 75 + - `zinnia`: WSL2 Host 75 76 76 77 ## Installation 77 78
+13
flake.nix
··· 35 35 inherit self inputs; 36 36 }; 37 37 }; 38 + zinnia = nixpkgs.lib.nixosSystem { 39 + modules = [ 40 + ./hosts/zinnia 41 + home-manager.nixosModules.home-manager 42 + ]; 43 + specialArgs = { 44 + inherit self inputs; 45 + }; 46 + }; 38 47 }; 39 48 }; 40 49 ··· 68 77 }; 69 78 70 79 # hardware 80 + nixos-wsl = { 81 + url = "github:nix-community/NixOS-WSL/main"; 82 + inputs.flake-compat.follows = ""; 83 + }; 71 84 raspberry-pi-nix = { 72 85 url = "github:nix-community/raspberry-pi-nix?ref=v0.4.1"; 73 86 inputs.nixpkgs.follows = "nixpkgs";
+11
hosts/zinnia/default.nix
··· 1 + {inputs, ...}: { 2 + imports = [ 3 + inputs.nixos-wsl.nixosModules.default 4 + ]; 5 + wsl = { 6 + enable = true; 7 + defaultUser = "willow"; 8 + }; 9 + 10 + nixpkgs.hostPlatform = "x86_64-linux"; 11 + }