This commit is contained in:
Evan Reichard 2025-09-27 12:28:43 -04:00
parent 74e6684783
commit 1098c68073
2 changed files with 13 additions and 5 deletions

View File

@ -20,13 +20,13 @@ in
content = { content = {
type = "gpt"; type = "gpt";
partitions = { partitions = {
boot = { bios-boot = {
name = "boot"; name = "bios-boot";
size = "1M"; size = "1M";
type = "EF02"; type = "EF02";
}; };
esp = { boot = {
name = "ESP"; name = "boot";
size = "500M"; size = "500M";
type = "EF00"; type = "EF00";
content = { content = {

View File

@ -1,4 +1,4 @@
{ namespace, lib, ... }: { namespace, pkgs, lib, ... }:
let let
inherit (lib.${namespace}) enabled; inherit (lib.${namespace}) enabled;
in in
@ -17,6 +17,8 @@ in
system = { system = {
boot = { boot = {
enable = true; enable = true;
enableGrub = false;
enableSystemd = true;
silentBoot = true; silentBoot = true;
}; };
disk = { disk = {
@ -34,6 +36,7 @@ in
}; };
services = { services = {
tailscale = enabled;
avahi = enabled; avahi = enabled;
ydotool = enabled; ydotool = enabled;
}; };
@ -55,4 +58,9 @@ in
}; };
}; };
}; };
# Additional System Packages
environment.systemPackages = with pkgs; [
mosh
];
} }