Move common nix code one level up.

This commit is contained in:
2023-11-26 09:36:17 +00:00
parent dfd472ebe8
commit 361dd002d5
26 changed files with 8 additions and 8 deletions

View File

@@ -1,8 +1,8 @@
{ pkgs, inputs, ... }: { pkgs, inputs, ... }:
{ {
imports = [ imports = [
../common/global ../../common/global
../common/compute-node.nix ../../common/compute-node.nix
./hardware.nix ./hardware.nix
]; ];

View File

@@ -1,8 +1,8 @@
{ pkgs, inputs, ... }: { pkgs, inputs, ... }:
{ {
imports = [ imports = [
../common/global ../../common/global
../common/compute-node.nix ../../common/compute-node.nix
./hardware.nix ./hardware.nix
]; ];

View File

@@ -1,8 +1,8 @@
{ pkgs, inputs, ... }: { pkgs, inputs, ... }:
{ {
imports = [ imports = [
../common/global ../../common/global
../common/compute-node.nix ../../common/compute-node.nix
./hardware.nix ./hardware.nix
]; ];

View File

@@ -1,8 +1,8 @@
{ pkgs, inputs, ... }: { pkgs, inputs, ... }:
{ {
imports = [ imports = [
../common/global ../../common/global
../common/user-node.nix ../../common/user-node.nix
./hardware.nix ./hardware.nix
]; ];