idiosyn/nixos/config/casper.nix

19 lines
438 B
Nix
Raw Permalink Normal View History

2024-09-05 17:44:54 +02:00
{ self, ... }: { lib, config, pkgs, ... }: {
imports = with self.nixosModules; [ magi ];
ephemeral = {
enable = true;
device = "UUID=545bcd08-9f1a-4f42-b85e-93c47d496ac3";
boot = {
device = "UUID=A5AE-22E8";
fsType = "vfat";
};
};
services.ntpd-rs.settings.source = map (address: {
mode = "server";
inherit address;
}) [ "melchior.nyantec.com" "balthasar.nyantec.com" ]
|> lib.mkAfter;
2024-09-05 17:44:54 +02:00
}