This commit is contained in:
John Lancaster
2024-12-09 17:38:18 -06:00
parent fdb9d8717d
commit afe391ef8e
4 changed files with 29 additions and 10 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;
};
}