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

24 lines
363 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;
};
2024-01-19 01:21:34 +00:00
networking.networkmanager.enable = true;
system.stateVersion = "23.11";
2024-01-18 22:55:55 +00:00
}