mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-07 23:56:33 +01:00
15 lines
199 B
Nix
15 lines
199 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
boot.loader = {
|
||
|
grub.enable = false;
|
||
|
generic-extlinux-compatible.enable = true;
|
||
|
};
|
||
|
|
||
|
networking.hostName = "inugami";
|
||
|
}
|