1
1
Fork 0
nixos/machines/myne/default.nix
Myned d73715998a
myne: update nixos config
Signed-off-by: Myned <dev@bjork.tech>
2024-10-08 21:30:49 -05:00

19 lines
258 B
Nix

{
imports = [
./disko.nix
./hardware-configuration.nix
];
custom = {
hostname = "myne";
settings = {
boot.grub = true;
networking = {
static = true;
ipv6 = "2a01:4ff:f0:e193::1/64";
};
};
};
}