nixos/configuration.nix

19 lines
285 B
Nix
Raw Normal View History

2025-12-02 20:35:16 +00:00
{ config, pkgs, lib, ... }:
2025-05-08 19:23:55 +01:00
2025-12-02 20:35:16 +00:00
{
imports = [
./hardware-configuration.nix
./base.nix
];
2025-05-08 19:23:55 +01:00
2025-12-02 20:35:16 +00:00
# Bootloader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
boot.loader.grub.useOSProber = true;
2025-12-02 20:35:16 +00:00
networking.hostName = "FredOS-gaming";
system.stateVersion = "25.11";
2025-05-09 21:03:20 +01:00
2025-05-08 19:23:55 +01:00
}