diff --git a/hosts/slab/configuration.nix b/hosts/slab/configuration.nix index 428c4e4..3692947 100644 --- a/hosts/slab/configuration.nix +++ b/hosts/slab/configuration.nix @@ -59,6 +59,7 @@ profile.workstation.enable = true; common.remoteAccess.enable = true; hardware.opengl.enable = true; + hardware.gps.enable = true; packageSets = { gaming.enable = true; fun.enable = true; @@ -124,6 +125,9 @@ settings.reboot-for-bitlocker = true; }; + # GPS data from my phone + services.gpsd.devices = lib.mkIf config.nixfiles.hardware.gps.enable [ "tcp://pixel.magpie-moth.ts.net:6000" ]; + # systemd power/suspend configuration systemd.targets = lib.genAttrs ["suspend" "hybrid-sleep" "suspend-then-hibernate"] (_: { enable = false;