lib: rename

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-03-08 11:17:33 +05:30
parent f31eb4c876
commit 8e3a3aca2b
12 changed files with 33 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, network, ... }:
{ config, pkgs, lib', ... }:
{
imports = [
./networking.nix
@@ -15,7 +15,7 @@
shell = pkgs.zsh;
home = "/home/bat";
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = network.commonSSHKeys;
openssh.authorizedKeys.keys = lib'.network.commonSSHKeys;
};
system.stateVersion = "21.11";