First commit

This commit is contained in:
2025-07-22 02:30:15 +02:00
commit e9441f563b
66 changed files with 4401 additions and 0 deletions

34
modules/default.nix Normal file
View File

@@ -0,0 +1,34 @@
{
modulesPath,
inputs,
lib,
...
}@attrs:
let
hostname = "${attrs.hostname}";
secrets = inputs.mysecrets;
in
{
imports =
[
(modulesPath + "/installer/scan/not-detected.nix")
./common
./grub
./networking
./sops
./sshd
./tty
./user
]
++ lib.optionals
(builtins.elem hostname [
"test-kvm"
"home-nix"
])
[
./desktop
./libvirt
./ssh
];
}