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 = {
type = "gpt";
partitions = {
boot = {
name = "boot";
bios-boot = {
name = "bios-boot";
size = "1M";
type = "EF02";
};
esp = {
name = "ESP";
boot = {
name = "boot";
size = "500M";
type = "EF00";
content = {

View File

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