28 lines
No EOL
562 B
Nix
28 lines
No EOL
562 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
imports = [
|
|
../../../../modules/k3s
|
|
];
|
|
|
|
networking.hostName = "epsilon";
|
|
|
|
nyxs-nix.services.k3s = {
|
|
enable = true;
|
|
};
|
|
|
|
systemd.network.links."10-eth0" = {
|
|
matchConfig.PermanentMACAddress = "00:25:90:e6:e1:21";
|
|
linkConfig.Name = "eth0";
|
|
};
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/a0c8475c-cda8-4ceb-bbad-50d9537924be";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-uuid/8D63-DF1F";
|
|
fsType = "vfat";
|
|
options = [ "fmask=0077" "dmask=0077" ];
|
|
};
|
|
} |