diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-24 11:51:39 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-24 11:51:39 -0400 |
commit | d639c293ad1ba71008aeb5c54c40f59a076018dc (patch) | |
tree | e832a3f0ee5044c8b35e5642f07a62137bbffc2c /system/default.nix | |
parent | update ssh config (diff) | |
download | dotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.tar.gz dotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.tar.bz2 dotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.zip |
redo lib, make global vars for key lists
Diffstat (limited to 'system/default.nix')
-rw-r--r-- | system/default.nix | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/system/default.nix b/system/default.nix index 1a710d7..ae04066 100644 --- a/system/default.nix +++ b/system/default.nix @@ -1,7 +1,7 @@ { - inputs, config, pkgs, + self, ... }: { imports = [ @@ -136,8 +136,5 @@ }; # certs - security.pki.certificateFiles = [ - ../files/certs/freyanet.crt - ../files/certs/tinternet.crt - ]; + security.pki.certificateFiles = self.lib.certs; } |