nixos-config/hosts/desktop/configuration.nix

20 lines
355 B
Nix

{ self, ... }:
{
imports = [ self.nixosModules.workstation-profile ];
system.stateVersion = "23.11";
custom = {
boot.loader.systemd-boot.enable = true;
networking = {
overlay.address = "10.254.250.1";
underlay = {
interface = "enp6s0";
useDhcp = true;
};
};
programs.steam.enable = true;
};
}