highly vibed modularization
This commit is contained in:
parent
a52cd4d35c
commit
cea12431ff
12 changed files with 79 additions and 13 deletions
6
hosts/base.nix
Normal file
6
hosts/base.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./default.nix
|
||||
];
|
||||
} # end file
|
||||
6
hosts/default.nix
Normal file
6
hosts/default.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./common/default.nix
|
||||
];
|
||||
} # end file
|
||||
6
hosts/hosts/electra.nix
Normal file
6
hosts/hosts/electra.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../electra/configuration.nix
|
||||
];
|
||||
} # end file
|
||||
6
hosts/hosts/nuc.nix
Normal file
6
hosts/hosts/nuc.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../nuc/configuration.nix
|
||||
];
|
||||
} # end file
|
||||
6
hosts/hosts/tesla-nixos.nix
Normal file
6
hosts/hosts/tesla-nixos.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../tesla-nixos/configuration.nix
|
||||
];
|
||||
} # end file
|
||||
6
hosts/hosts/tower.nix
Normal file
6
hosts/hosts/tower.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../tower/configuration.nix
|
||||
];
|
||||
} # end file
|
||||
6
hosts/modules/stylix.nix
Normal file
6
hosts/modules/stylix.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../common/stylix.nix
|
||||
];
|
||||
} # end file
|
||||
6
hosts/modules/wm/gnome/default.nix
Normal file
6
hosts/modules/wm/gnome/default.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../../../common/wm/gnome.nix
|
||||
];
|
||||
} # end file
|
||||
6
hosts/modules/wm/sway/default.nix
Normal file
6
hosts/modules/wm/sway/default.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../../../common/wm/sway.nix
|
||||
];
|
||||
} # end file
|
||||
6
hosts/server.nix
Normal file
6
hosts/server.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./common/server.nix
|
||||
];
|
||||
} # end file
|
||||
6
hosts/workstation.nix
Normal file
6
hosts/workstation.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./common/workstation.nix
|
||||
];
|
||||
} # end file
|
||||
Loading…
Add table
Add a link
Reference in a new issue