nix-conf/systems/inugami/default.nix

24 lines
337 B
Nix
Raw Normal View History

2023-08-14 17:10:54 +02:00
{ ... }:
{
imports = [
./hardware-configuration.nix
];
boot.loader = {
grub.enable = false;
generic-extlinux-compatible.enable = true;
};
networking.hostName = "inugami";
2023-08-14 17:52:44 +02:00
programs = {
git = {
enable = true;
lfs.enable = true;
};
};
2023-08-14 18:06:24 +02:00
hardware.raspberry-pi."4".fkms-3d.enable = true;
2023-08-14 17:10:54 +02:00
}