nix-config/hosts/eos/default.nix
Jordan Holt 9f1baa4c1e
Some checks failed
Check flake / build-amd64-linux (push) Failing after 2m34s
eos: remove battery percentage
2025-03-16 16:04:15 +00:00

23 lines
336 B
Nix

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