mirror of
https://codeberg.org/icewind/palantir.git
synced 2026-06-03 10:14:09 +02:00
module fix
This commit is contained in:
parent
1a2379b726
commit
bd32b96795
2 changed files with 8 additions and 6 deletions
10
flake.nix
10
flake.nix
|
|
@ -86,10 +86,12 @@
|
||||||
default = palantir;
|
default = palantir;
|
||||||
};
|
};
|
||||||
|
|
||||||
apps.palantir = utils.lib.mkApp {
|
apps = rec {
|
||||||
drv = packages.palantir;
|
palantir = utils.lib.mkApp {
|
||||||
|
drv = packages.palantir;
|
||||||
|
};
|
||||||
|
default = palantir;
|
||||||
};
|
};
|
||||||
defaultApp = apps.palantir;
|
|
||||||
|
|
||||||
inherit targets;
|
inherit targets;
|
||||||
releaseMatrix = {
|
releaseMatrix = {
|
||||||
|
|
@ -112,7 +114,7 @@
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
// {
|
// {
|
||||||
overlays = import ./overlay.nix;
|
overlays.default = import ./overlay.nix;
|
||||||
nixosModules.default = {
|
nixosModules.default = {
|
||||||
pkgs,
|
pkgs,
|
||||||
config,
|
config,
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib; let
|
with lib; let
|
||||||
cfg = config.palantir.services.palantir;
|
cfg = config.services.palantir;
|
||||||
in {
|
in {
|
||||||
options.palantir.services.palantir = {
|
options.services.palantir = {
|
||||||
enable = mkEnableOption "Enables the palantir service";
|
enable = mkEnableOption "Enables the palantir service";
|
||||||
|
|
||||||
port = mkOption rec {
|
port = mkOption rec {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue