1
1
Fork 0
nixos-configs/machine/centroid/default.nix

22 lines
319 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
2024-01-18 22:55:55 +00:00
imports = [
./hardware-configuration.nix
];
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
2024-01-18 23:10:24 +00:00
beatific.hostName = "centroid";
beatific.defaults = {
nebula = false;
tvbSync = false;
};
system.stateVersion = "23.11";
2024-01-18 22:55:55 +00:00
}