hosts: Rename default.nix to configuration.nix

This commit is contained in:
SebastianStork 2026-03-09 13:49:51 +01:00
parent 631dd7e4be
commit 4505d4c3ec
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
5 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ self, ... }:
{
imports = [ self.nixosModules.workstation-profile ];
system.stateVersion = "24.11";
custom = {
boot.loader.systemd-boot.enable = true;
networking = {
overlay.address = "10.254.250.3";
underlay = {
interface = "wlan0";
useDhcp = true;
wireless.enable = true;
};
};
services.bluetooth.enable = true;
programs = {
winboat.enable = true;
wireshark.enable = true;
};
};
}