mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
10 lines
173 B
Nix
10 lines
173 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [];
|
|
|
|
boot.loader.grub.enable = false;
|
|
boot.loader.generic-extlinux-compatible.enable = true;
|
|
|
|
networking.hostName = "catullus";
|
|
}
|