sneeuwvlok/hosts/ulmo/default.nix

32 lines
502 B
Nix

{ config, ... }:
{
imports = [ ./hardware.nix ];
fileSystems."/var/media" = {
device = "/dev/disk/by-label/data";
fsType = "ext4";
};
modules = {
networking.ssh.enable = true;
services = {
media.enable = true;
games = {
minecraft.enable = true;
};
};
root = {
user = {
full_name = "__ROOT__";
email = "__ROOT__@${config.networking.hostName}";
};
shell = {
default = "zsh";
};
};
};
}