this repo has no description
0
fork

Configure Feed

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

test: initial test VM support

+28
+8
Makefile
··· 21 21 --impure \ 22 22 --flake '.#main' \ 23 23 switch 24 + 25 + .PHONY: test 26 + test: 27 + nixos-rebuild \ 28 + --impure \ 29 + --flake '.#test' \ 30 + build-vm 31 + ./result/bin/run-nixos-vm
+20
flake.nix
··· 20 20 ./home/khuedoan.nix 21 21 ]; 22 22 }; 23 + # TODO clean up tests 24 + nixosConfigurations.test = nixpkgs.lib.nixosSystem { 25 + system = "aarch64-linux"; 26 + modules = [ 27 + ./configuration.nix 28 + { 29 + users.extraUsers.vm = { 30 + group = "wheel"; 31 + isNormalUser = true; 32 + password = "testvm"; 33 + }; 34 + security.sudo = { 35 + enable = true; 36 + wheelNeedsPassword = false; 37 + }; 38 + } 39 + home-manager.nixosModules.home-manager 40 + ./home/khuedoan.nix 41 + ]; 42 + }; 23 43 }; 24 44 }