Reorganize system modules

This commit is contained in:
NullBite 2024-02-08 14:48:09 +01:00
parent 969abe113e
commit 6ea5c557a3
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
24 changed files with 45 additions and 1 deletions

View File

@ -1,2 +1,4 @@
# system
This directory contains modules and configuration specific to my NixOS configuration. `default.nix` is the entrypoint to my module set; it can safely be loaded without making any configuration changes by default.
This directory contains modules and configuration specific to my NixOS
configuration. `default.nix` is the entrypoint to my module set; it can
safely be loaded without making any configuration changes by default.

View File

@ -0,0 +1,9 @@
{...}:
{
imports = [
./desktop.nix
./me.nix
./remote.nix
./wm.nix
];
}

View File

@ -0,0 +1,9 @@
{...}:
{
imports = [
./bluetooth.nix
./nvidia.nix
./opengl.nix
./sound.nix
];
}

View File

@ -0,0 +1,7 @@
{...}:
{
imports = [
./gaming.nix
./multimedia.nix
];
}

View File

@ -0,0 +1,6 @@
{...}:
{
imports = [
./base.nix
];
}

View File

@ -0,0 +1,6 @@
{...}:
{
imports = [
./syncthing.nix
];
}

View File

@ -0,0 +1,5 @@
{...}:
{ imports = [
./hyprland.nix
./plasma.nix
];}