WIP panoptes transition

This commit is contained in:
John Lancaster
2024-12-09 18:00:41 -06:00
parent 41bf8a074e
commit 76dbeeeff1
10 changed files with 154 additions and 137 deletions

19
nixosModules/default.nix Normal file
View File

@@ -0,0 +1,19 @@
{
pkgs,
config,
lib,
inputs,
outputs,
...
}: {
imports =
[
./services/loki.nix
];
config = {
nix.settings.experimental-features = ["nix-command" "flakes"];
programs.nix-ld.enable = true;
nixpkgs.config.allowUnfree = true;
};
}