diff --git a/dotfiles/.config/niri/switch_monitors.sh b/dotfiles/.config/niri/switch_monitors.sh index f78d506..56643a7 100755 --- a/dotfiles/.config/niri/switch_monitors.sh +++ b/dotfiles/.config/niri/switch_monitors.sh @@ -50,3 +50,5 @@ sleep 0.5 niri msg reload-layout >/dev/null 2>&1 || true pkill swayosd-server (swayosd-server &>/dev/null &) +pkill wl-gammarelay-rs +(wl-gammarelay-rs &>/dev/null &) diff --git a/hosts/dos/hardware.nix b/hosts/dos/hardware.nix index 30c242d..17f42d5 100644 --- a/hosts/dos/hardware.nix +++ b/hosts/dos/hardware.nix @@ -14,7 +14,7 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/67e9d418-8f31-4af7-9178-ae9641099844"; + { device = "/dev/mapper/luks-6647cbcd-ed3a-4205-9a2c-78e337e2f3bf"; fsType = "xfs"; }; @@ -28,13 +28,6 @@ swapDevices = [ ]; - # Enables DHCP on each ethernet and wireless interface. In case of scripted networking - # (the default) this is the recommended approach. When using systemd-networkd it's - # still possible to use this option, but it's recommended to use it in conjunction - # with explicit per-interface declarations with `networking.interfaces..useDHCP`. - networking.useDHCP = lib.mkDefault true; - # networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true; - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } diff --git a/modules/services/mysql.nix b/modules/services/mysql.nix index b2769e9..992b097 100644 --- a/modules/services/mysql.nix +++ b/modules/services/mysql.nix @@ -9,9 +9,12 @@ in package = pkgs.mysql84; }; + systemd.services.mysql = { + enable = false; + }; + environment.systemPackages = [ pkgs.dbeaver-bin ]; }; } -