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