|
@@ -1,12 +1,14 @@
|
|
|
{ config, pkgs, lib, ... }:
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
|
|
+let
|
|
|
|
|
+ hosts = import ../../config/hosts.nix;
|
|
|
|
|
+in
|
|
|
{
|
|
{
|
|
|
imports = [
|
|
imports = [
|
|
|
- ./networking.nix
|
|
|
|
|
./hardware-configuration.nix
|
|
./hardware-configuration.nix
|
|
|
|
|
|
|
|
../../nixos/hardware/gpu/nvidia.nix
|
|
../../nixos/hardware/gpu/nvidia.nix
|
|
|
- ../../nixos/hardware/wifi/bcm4360.nix
|
|
|
|
|
|
|
+ ../../nixos/hardware/networking/bcm4360.nix
|
|
|
../../nixos/hardware/sound
|
|
../../nixos/hardware/sound
|
|
|
../../nixos/hardware/bluetooth
|
|
../../nixos/hardware/bluetooth
|
|
|
../../nixos/flavors/desktop/sway
|
|
../../nixos/flavors/desktop/sway
|
|
@@ -20,6 +22,8 @@
|
|
|
|
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
|
|
|
|
|
|
+ networking.hostName = hosts.nixstation.hostname;
|
|
|
|
|
+
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
system.stateVersion = "25.11";
|
|
system.stateVersion = "25.11";
|