Skip to content

Commit

Permalink
Refactor file organization under /modules/foundations/ dir
Browse files Browse the repository at this point in the history
  • Loading branch information
foofrog committed Jun 21, 2024
1 parent 299be06 commit 02e76e3
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 5 deletions.
9 changes: 4 additions & 5 deletions hosts/foobar/systemwide.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@

../../modules/environment/users/foo

../../modules/foundations/bootloader/systemd-boot

../../modules/foundations/graphics/api/opengl
../../modules/foundations/graphics/processing-units/amd
../../modules/foundations/graphics/processing-units/nvidia
../../modules/foundations/bootloader

../../modules/foundations/graphics/api
../../modules/foundations/graphics/processing-units

../../modules/foundations/i18n/fonts
../../modules/foundations/i18n/l10n

Expand Down
5 changes: 5 additions & 0 deletions modules/foundations/bootloader/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{...}: {
imports = [
./systemd-boot.nix
];
}
5 changes: 5 additions & 0 deletions modules/foundations/graphics/api/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{...}: {
imports = [
./opengl.nix
];
}
File renamed without changes.
6 changes: 6 additions & 0 deletions modules/foundations/graphics/processing-units/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{...}: {
imports = [
./amd.nix
./nvidia.nix
];
}

0 comments on commit 02e76e3

Please sign in to comment.