treewide: modules: simplify
This commit is contained in:
parent
4a33b357d2
commit
5b87816947
13 changed files with 10 additions and 50 deletions
|
@ -1,6 +1,6 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./networking
|
./networking/proxy.nix
|
||||||
./services
|
./services/clash.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
{...}: {
|
|
||||||
imports = [
|
|
||||||
./proxy
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{...}: {
|
|
||||||
imports = [
|
|
||||||
./clash
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,9 +1,15 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
# utils that is used internally
|
# utils that is used internally
|
||||||
./myFlake
|
./myFlake/boot.nix
|
||||||
|
./myFlake/hardware/accessories/logitech-wireless.nix
|
||||||
|
./myFlake/hardware/accessories/piper.nix
|
||||||
|
./myFlake/hardware/accessories/xbox-one-controller.nix
|
||||||
|
./myFlake/hardware/components/audio.nix
|
||||||
|
./myFlake/hardware/components/bluetooth.nix
|
||||||
|
./myFlake/hardware/components/tpm.nix
|
||||||
|
|
||||||
# nixpkgs styled options
|
# nixpkgs styled options
|
||||||
./services
|
./services/clash.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
{...}: {
|
|
||||||
imports = [
|
|
||||||
./boot.nix
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{...}: {
|
|
||||||
imports = [
|
|
||||||
./boot
|
|
||||||
./hardware
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{...}: {
|
|
||||||
imports = [
|
|
||||||
./logitech-wireless.nix
|
|
||||||
./piper.nix
|
|
||||||
./xbox-one-controller.nix
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{...}: {
|
|
||||||
imports = [
|
|
||||||
./audio.nix
|
|
||||||
./bluetooth.nix
|
|
||||||
./tpm.nix
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{...}: {
|
|
||||||
imports = [
|
|
||||||
./accessories
|
|
||||||
./components
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{...}: {
|
|
||||||
imports = [
|
|
||||||
./clash.nix
|
|
||||||
];
|
|
||||||
}
|
|
Loading…
Reference in a new issue