This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/nixos/hosts/rickenbacker/default.nix
2024-03-26 21:11:56 +11:00

33 lines
585 B
Nix

{ config
, lib
, pkgs
, ...
}: {
# hardware-configuration.nix is missing as I've abstracted out the parts
config.mySystem = {
services.openssh.enable = true;
security.wheelNeedsSudoPassword = false;
};
# TODO build this in from flake host names
config.networking.hostName = "rickenbacker";
config = {
fileSystems."/" =
{
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
fileSystems."/boot" =
{
device = "/dev/disk/by-uuid/44D0-91EC";
fsType = "vfat";
};
swapDevices = [ ];
};
}