diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2023-11-20 23:30:26 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2023-11-20 23:30:26 -0700 |
| commit | 39f30359bb232f7152e7dabb8fc99a4116c60869 (patch) | |
| tree | 7f40e32cbd711cc21aee226b5e6c11eede611206 /flake.nix | |
| parent | 987f764e659c80a7cf485ebbea75dd7c90ebd525 (diff) | |
nixpkgs comes with a module to build an iso of the matching version
thanks to this, I should in theory only need to add some >
> minor configurations to make it accessible via ssh, and
> then I can set it up from there
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -187,6 +187,13 @@ # }; nixosConfigurations = { + live = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + (nixpkgs + "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix") + ./modules/users/defin.nix + ]; + }; zenbook = nixpkgs.lib.nixosSystem { # inherit system; |
