nixos/modules/default.nix
Jake Hillion 8933d38d36
All checks were successful
flake / flake (push) Successful in 1m14s
sched_ext: ship pre-release 6.12 kernel
2024-09-22 16:18:04 +01:00

34 lines
573 B
Nix

{ config, lib, ... }:
{
imports = [
./backups/default.nix
./ca/default.nix
./chia.nix
./defaults.nix
./desktop/awesome/default.nix
./dns.nix
./home/default.nix
./hostinfo.nix
./ids.nix
./impermanence.nix
./locations.nix
./resilio.nix
./sched_ext.nix
./services/default.nix
./shell/default.nix
./ssh/default.nix
./storj.nix
./users.nix
./www/global.nix
./www/www-repo.nix
];
options.custom = {
user = lib.mkOption {
type = lib.types.str;
default = "jake";
};
};
}