mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 21:19:07 +01:00
20 lines
355 B
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;
|
|
};
|
|
}
|