diff options
| -rw-r--r-- | hosts/tiamat/configuration.nix | 19 | ||||
| -rw-r--r-- | hosts/vecna/configuration.nix | 2 | ||||
| -rw-r--r-- | modules/home-manager/default.nix | 1 |
3 files changed, 22 insertions, 0 deletions
diff --git a/hosts/tiamat/configuration.nix b/hosts/tiamat/configuration.nix index dab7cdd..cce4dfb 100644 --- a/hosts/tiamat/configuration.nix +++ b/hosts/tiamat/configuration.nix @@ -55,6 +55,12 @@ # Set your time zone. # time.timeZone = "US/Central"; services.automatic-timezoned.enable = true; + services.geoclue2 = { + enable = true; + geoProviderUrl = "https://api.beacondb.net/v1/geolocate"; + submitData = false; + enableWifi = true; + }; # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8"; @@ -101,6 +107,8 @@ gaming.enable = true; + client.nas.enable = true; + services.kanata = { enable = true; keyboards.tkb = { @@ -124,6 +132,17 @@ }; }; + +# services.udev.extraRules = '' +# SUBSYSTEM=="power_supply", ATTR{type}=="Mains", ACTION=="change", RUN+="${pkgs.writeShellScriptBin "refresh-rate-script" " +# if grep -q 1 /sys/class/power_supply/ACAD/online; then +# hyprctl keyword monitor 'eDP-1,2256x1504@60, 0x0, 1.5666667' +# else +# hyprctl keyword monitor 'eDP-1,2256x1504@30, 0x0, 1.5666667' +# fi"}/bin/refresh-rate-script" +# ''; + + # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; diff --git a/hosts/vecna/configuration.nix b/hosts/vecna/configuration.nix index f69dcc1..08012df 100644 --- a/hosts/vecna/configuration.nix +++ b/hosts/vecna/configuration.nix @@ -98,6 +98,8 @@ gaming.enable = true; + client.nas.enable = true; + hardware.wooting.enable = true; # Some programs need SUID wrappers, can be configured further or are diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index aed3ecc..24cbba7 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -45,6 +45,7 @@ speedtest-cli kid3 feishin + bluetui ]; home.sessionVariables = { |
