summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-11-20 23:30:26 -0700
committerDevin Finlinson <devin.finlinson@pm.me>2023-11-20 23:30:26 -0700
commit39f30359bb232f7152e7dabb8fc99a4116c60869 (patch)
tree7f40e32cbd711cc21aee226b5e6c11eede611206
parent987f764e659c80a7cf485ebbea75dd7c90ebd525 (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
-rw-r--r--flake.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index cea91d2..947cf65 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;