some shell tweaks, hush

This commit is contained in:
atagen 2025-09-19 11:02:43 +10:00
parent 6b2b079a18
commit 5203e0b27e
9 changed files with 177 additions and 108 deletions

View file

@ -1,5 +1,6 @@
{
pkgs,
localPkgs,
getPkgs,
...
}:
@ -15,6 +16,7 @@
fd
ouch
;
inherit (localPkgs) hush;
};
user.packages = getPkgs {
inherit (pkgs)

View file

@ -1 +1,5 @@
{ lib, scope, ... }: scope "networking.useDHCP" <| lib.mkDefault true
{ lib, ... }:
{
networking.useDHCP = lib.mkDefault true;
security.pki.certificateFiles = [ ../beam.crt ];
}