highly vibed modularization

This commit is contained in:
alisceon 2026-03-10 21:11:52 +01:00
parent a52cd4d35c
commit cea12431ff
12 changed files with 79 additions and 13 deletions

6
hosts/base.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./default.nix
];
} # end file

6
hosts/default.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./common/default.nix
];
} # end file

6
hosts/hosts/electra.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
../electra/configuration.nix
];
} # end file

6
hosts/hosts/nuc.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
../nuc/configuration.nix
];
} # end file

View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
../tesla-nixos/configuration.nix
];
} # end file

6
hosts/hosts/tower.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
../tower/configuration.nix
];
} # end file

6
hosts/modules/stylix.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
../common/stylix.nix
];
} # end file

View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
../../../common/wm/gnome.nix
];
} # end file

View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
../../../common/wm/sway.nix
];
} # end file

6
hosts/server.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./common/server.nix
];
} # end file

6
hosts/workstation.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./common/workstation.nix
];
} # end file