Files
nix-config/hosts/eos/default.nix
Jordan Holt 269e9d20bf
All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m20s
hosts: import users in individual hosts
2025-08-22 11:57:16 +01:00

24 lines
359 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
../desktop.nix
../../users/jordan
];
nixpkgs.hostPlatform = "x86_64-linux";
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking = {
hostId = "cc858347";
networkmanager.enable = true;
};
system.stateVersion = "22.11";
}