From 504b765606f02b610d74d259ddf2c85292e1f6c0 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Sat, 8 Feb 2025 03:19:30 -0800 Subject: add nix-topology; make configuration options less bad; restructure project a bit; add flake system looping --- nix/systems/spontaneity/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'nix/systems/spontaneity/default.nix') diff --git a/nix/systems/spontaneity/default.nix b/nix/systems/spontaneity/default.nix index ae79429..df3dc6b 100644 --- a/nix/systems/spontaneity/default.nix +++ b/nix/systems/spontaneity/default.nix @@ -1,8 +1,12 @@ { config, lib, ... }: { imports = [ + # nixos-anywhere generates this file + ./hardware-configuration.nix + + ../../disko/vda-simple.nix + ../../modules/default.nix - ../../modules/vda-simple.nix ../home.nix ]; @@ -12,6 +16,5 @@ ttyonly.enable = true; grub.enable = true; }; - vars.hostName = "spontaneity"; }; } -- cgit