accomodating for fern package name change to 'shed'

This commit is contained in:
2026-02-24 18:05:46 -05:00
parent e9cbd0d686
commit a5582a584f
14 changed files with 87 additions and 63 deletions

View File

@@ -1,7 +1,7 @@
{ inputs, pkgs, username, ... }:
let
fern = inputs.fern.packages.${pkgs.stdenv.hostPlatform.system}.default;
shed = inputs.shed.packages.${pkgs.stdenv.hostPlatform.system}.default;
in
{
imports = [ ./hardware.nix ];
@@ -42,7 +42,7 @@ in
${username} = {
isNormalUser = true;
initialPassword = "1234";
shell = fern;
shell = shed;
extraGroups = [ "input" "wheel" "persist" "libvirtd" ];
};
};