diff options
author | azahi <azat@bahawi.net> | 2025-02-17 02:21:56 +0300 |
---|---|---|
committer | azahi <azat@bahawi.net> | 2025-02-17 02:21:56 +0300 |
commit | 59180328cda59817d71cd58c8f48ead047375064 (patch) | |
tree | 2cdd7d1bfa309839ef624c19daf283f510aacf69 /configurations/iso/default.nix | |
parent | 2025-02-05 (diff) |
2025-02-17
Diffstat (limited to 'configurations/iso/default.nix')
-rw-r--r-- | configurations/iso/default.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configurations/iso/default.nix b/configurations/iso/default.nix index 7277e88..b23157d 100644 --- a/configurations/iso/default.nix +++ b/configurations/iso/default.nix @@ -1,7 +1,6 @@ { lib, ... }: -with lib; { - secrets = mkForce { }; + secrets = lib.mkForce { }; nixfiles.modules = { common.networking.onlyDefault = true; @@ -16,11 +15,11 @@ with lib; }; }; - hm.programs.git.signing.signByDefault = mkForce false; + hm.programs.git.signing.signByDefault = lib.mkForce false; programs.mtr.enable = true; - services.getty.autologinUser = mkForce my.username; + services.getty.autologinUser = lib.mkForce lib.my.username; nixpkgs.config.allowBroken = true; } |