mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2025-04-04 05:01:21 +02:00
WIP: modules/debug-locations
This commit is contained in:
parent
fde69ca283
commit
9f355eff0d
1
base.nix
1
base.nix
@ -4,6 +4,7 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./users
|
./users
|
||||||
./modules/snakeoil-certs.nix
|
./modules/snakeoil-certs.nix
|
||||||
|
./modules/debug-locations.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.domain = "pvv.ntnu.no";
|
networking.domain = "pvv.ntnu.no";
|
||||||
|
13
modules/debug-locations.nix
Normal file
13
modules/debug-locations.nix
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{ config, lib, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.environment.debug-locations;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.environment.debug-locations = lib.mkOption {
|
||||||
|
description = "Paths and derivations to symlink in `/etc/debug`";
|
||||||
|
type = with lib.types; attrsOf path;
|
||||||
|
default = { };
|
||||||
|
};
|
||||||
|
|
||||||
|
config.environment.etc = lib.mapAttrs' (k: v: lib.nameValuePair "debug/${k}" { source = v; }) cfg;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user