mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 23:29:08 +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
26
hosts/laptop/configuration.nix
Normal file
26
hosts/laptop/configuration.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue