Reorganize configuration root

While I might still bikeshed how the rest of the configuration is
sourced, at least the import points should be stable.
This commit is contained in:
Geoffrey Frogeye 2023-11-28 20:53:18 +01:00
parent dd6f579f74
commit 6444f8f517
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
21 changed files with 169 additions and 77 deletions

12
os/default.nix Normal file
View file

@ -0,0 +1,12 @@
{ ... }:
{
imports = [
../options.nix
./battery.nix
./geoffrey.nix
./common.nix
./desktop.nix
./wireless.nix
"${builtins.fetchTarball "https://github.com/nix-community/disko/archive/3cb78c93e6a02f494aaf6aeb37481c27a2e2ee22.tar.gz"}/module.nix"
];
}