Reorganize system modules
This commit is contained in:
parent
969abe113e
commit
6ea5c557a3
@ -1,2 +1,4 @@
|
|||||||
# system
|
# 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.
|
||||||
|
9
system/common/default.nix
Normal file
9
system/common/default.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{...}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./desktop.nix
|
||||||
|
./me.nix
|
||||||
|
./remote.nix
|
||||||
|
./wm.nix
|
||||||
|
];
|
||||||
|
}
|
9
system/hardware/default.nix
Normal file
9
system/hardware/default.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{...}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./bluetooth.nix
|
||||||
|
./nvidia.nix
|
||||||
|
./opengl.nix
|
||||||
|
./sound.nix
|
||||||
|
];
|
||||||
|
}
|
7
system/package-sets/default.nix
Normal file
7
system/package-sets/default.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{...}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./gaming.nix
|
||||||
|
./multimedia.nix
|
||||||
|
];
|
||||||
|
}
|
6
system/profile/default.nix
Normal file
6
system/profile/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{...}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./base.nix
|
||||||
|
];
|
||||||
|
}
|
6
system/programs/default.nix
Normal file
6
system/programs/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{...}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./syncthing.nix
|
||||||
|
];
|
||||||
|
}
|
5
system/sessions/default.nix
Normal file
5
system/sessions/default.nix
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{...}:
|
||||||
|
{ imports = [
|
||||||
|
./hyprland.nix
|
||||||
|
./plasma.nix
|
||||||
|
];}
|
Loading…
x
Reference in New Issue
Block a user