Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented
8
fork

Configure Feed

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

add vm app to default template

+16
+16
templates/default/modules/vm.nix
··· 1 + # enables `nix run .#vm`. it is very useful to have a VM 2 + # you can edit your config and launch the VM to test stuff 3 + # instead of having to reboot each time. 4 + { inputs, ... }: 5 + { 6 + perSystem = 7 + { pkgs, ... }: 8 + { 9 + packages.vm = pkgs.writeShellApplication { 10 + name = "vm"; 11 + text = '' 12 + ${inputs.self.nixosConfigurations.igloo.config.system.build.vm}/bin/run-igloo-vm "$@" 13 + ''; 14 + }; 15 + }; 16 + }