9786bc9cd6
* chore: tweak favourites * chore: hacking * feat: add nix-serve * hax * re-encrypt * haxing bind * hacing sonarr/traef * hack * hack * feat: add bind for local dns (manual) * fix * hacked up dns --------- Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
20 lines
311 B
Nix
20 lines
311 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
./system
|
|
./programs
|
|
./services
|
|
./browser
|
|
./de
|
|
./editor
|
|
./hardware
|
|
];
|
|
|
|
options.mySystem.persistentFolder = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "persistent folter for mutable files";
|
|
default = "/persistent/nixos/";
|
|
};
|
|
|
|
|
|
}
|