nixos: add website path to variables
This commit is contained in:
parent
f0289e8cec
commit
2f8bfedfe2
1 changed files with 6 additions and 2 deletions
|
|
@ -9,6 +9,10 @@
|
||||||
inherit (builtins) attrValues;
|
inherit (builtins) attrValues;
|
||||||
inherit (lib) mkIf mapAttrsToList;
|
inherit (lib) mkIf mapAttrsToList;
|
||||||
inherit (config.ooknet.host) role admin;
|
inherit (config.ooknet.host) role admin;
|
||||||
|
paths = {
|
||||||
|
FLAKE = "/home/${admin.name}/.config/ooknet";
|
||||||
|
WEBSITE = "${paths.FLAKE}/outputs/pkgs/website";
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
environment = {
|
environment = {
|
||||||
# disable default nix packages
|
# disable default nix packages
|
||||||
|
|
@ -20,7 +24,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
# location of the configuration flake
|
# location of the configuration flake
|
||||||
variables.FLAKE = "/home/${admin.name}/.config/ooknet";
|
variables = paths;
|
||||||
};
|
};
|
||||||
nix = {
|
nix = {
|
||||||
# package = pkgs.lix;
|
# package = pkgs.lix;
|
||||||
|
|
@ -37,7 +41,7 @@ in {
|
||||||
};
|
};
|
||||||
nixPath = mapAttrsToList (name: _: "${name}=${name}") config.nix.registry;
|
nixPath = mapAttrsToList (name: _: "${name}=${name}") config.nix.registry;
|
||||||
settings = {
|
settings = {
|
||||||
trusted-users = ["@wheel" "root"];
|
trusted-users = ["@wheel" "root" "builder"];
|
||||||
experimental-features = ["nix-command" "flakes"];
|
experimental-features = ["nix-command" "flakes"];
|
||||||
accept-flake-config = true;
|
accept-flake-config = true;
|
||||||
auto-optimise-store = true;
|
auto-optimise-store = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue