mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 22:29:06 +01:00
hosts: Rename default.nix to configuration.nix
This commit is contained in:
parent
631dd7e4be
commit
4505d4c3ec
5 changed files with 0 additions and 0 deletions
20
hosts/desktop/configuration.nix
Normal file
20
hosts/desktop/configuration.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue