wip
This commit is contained in:
parent
74e6684783
commit
1098c68073
@ -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 = {
|
||||
|
@ -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
|
||||
];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user