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