mount boot drive for overseer

This commit is contained in:
TheWanderingCrow 2025-03-05 10:22:25 -05:00
parent 25d93e273a
commit c054752105
2 changed files with 24 additions and 0 deletions

View file

@ -24,6 +24,11 @@
};
};
fileSystems."/boot" = {
device = "/dev/sda1";
fsType = "vfat";
options = ["fmask=0022" "dmask=0022"];
};
fileSystems."/" = {
device = "zroot";
fsType = "zfs";

View file

@ -201,6 +201,25 @@ lib.mkIf config.user.overseer.enable {
}
];
}
{
Nix = [
{
Search = [
{
icon = "https://search.nixos.org/favicon.svg";
href = "https://search.nixos.org";
}
];
}
{
"PR Tracker" = [
{
href = "https://nixpk.gs/pr-tracker.html";
}
];
}
];
}
];
};
};