diff --git a/hosts/lilith-pad/configuration.nix b/hosts/lilith-pad/configuration.nix index ad657a2c..3947369f 100644 --- a/hosts/lilith-pad/configuration.nix +++ b/hosts/lilith-pad/configuration.nix @@ -1,3 +1,3 @@ {...}: { - + import = ["../system"]; } diff --git a/system/default.nix b/system/default.nix new file mode 100644 index 00000000..efe04648 --- /dev/null +++ b/system/default.nix @@ -0,0 +1,16 @@ +{...}: { + import = [ + "./audio.nix" + "./boot.nix" + "./env.nix" + "./networking.nix" + "./persistence.nix" + "./bluetooth.nix" + "./btrfs.nix" + "./fonts.nix" + "./nix.nix" + "./steam.nix" + ]; + + system.stateVersion = "24.11"; +}