moved common into modules

This commit is contained in:
2026-07-13 16:03:48 +10:00
parent d5c13bc2d2
commit d48e4d4f10
11 changed files with 14 additions and 14 deletions
+7 -7
View File
@@ -29,7 +29,7 @@
inherit system;
modules = [
./hosts/nixos/configuration.nix
./common/hardware-configuration.nix
./modules/hardware-configuration/vm/proxmox.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
@@ -58,7 +58,7 @@ docker = nixpkgs.lib.nixosSystem {
modules = [
./hosts/docker/configuration.nix
./common/hardware-configuration.nix
./modules/hardware-configuration/vm/proxmox.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
@@ -71,7 +71,7 @@ docker = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./hosts/kuma/configuration.nix
./common/hardware-configuration.nix
./modules/hardware-configuration/vm/proxmox.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
@@ -85,7 +85,7 @@ docker = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./hosts/server/configuration.nix
./common/hardware-configuration.nix
./modules/hardware-configuration/vm/proxmox.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
@@ -99,7 +99,7 @@ docker = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./hosts/nix-cache/configuration.nix
./common/hardware-configuration.nix
./modules/hardware-configuration/vm/proxmox.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
@@ -113,7 +113,7 @@ docker = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./hosts/nix-minimal/configuration.nix
./common/hardware-configuration.nix
./modules/hardware-configuration/vm/proxmox.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
@@ -127,7 +127,7 @@ docker = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./hosts/pxe-boot/configuration.nix
./common/hardware-configuration.nix
./modules/hardware-configuration/vm/proxmox.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
+1 -1
View File
@@ -7,7 +7,7 @@
{
imports =
[
../../common/configuration.nix
../../modules/common/configuration.nix
../../modules/nix-cache/client.nix
../../modules/remote-builder-client.nix
../../modules/docker/mount-data.nix
+1 -1
View File
@@ -7,7 +7,7 @@
{
imports =
[ # Include the results of the hardware scan.
../../common/configuration.nix
../../modules/common/configuration.nix
../../modules/nix-cache/server.nix
../../modules/beszel/enable-agent.nix
];
+1 -1
View File
@@ -7,7 +7,7 @@
{
imports =
[ # Include the results of the hardware scan.
../../common/configuration.nix
../../modules/common/configuration.nix
../../modules/nix/cache-client.nix
../../modules/nix/remote-builder-client.nix
];
+1 -1
View File
@@ -27,7 +27,7 @@ in {
imports =
[ # Include the results of the hardware scan.
../../common/configuration.nix
../../modules/common/configuration.nix
../../modules/nix/cache-client.nix
../../modules/nix/remote-builder-client.nix
];
+1 -1
View File
@@ -93,7 +93,7 @@ in
{
imports =
[
../../common/configuration.nix
../../modules/common/configuration.nix
../../modules/nix/cache-client.nix
../../modules/nix/remote-builder-client.nix
];
+1 -1
View File
@@ -6,7 +6,7 @@
{
imports =
[ # Include the results of the hardware scan.
../../common/configuration.nix
../../modules/common/configuration.nix
../../modules/nix-cache/client.nix
../../modules/remote-builder-client.nix
../../modules/beszel/enable-agent.nix
@@ -4,7 +4,7 @@
imports =
[ # Include the results of the hardware scan.
# ./hardware-configuration.nix
../modules/set-locale.nix
../set-locale.nix
];
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;