diff --git a/home/modules/niri.nix b/home/modules/niri.nix index 6b84996..293fc3d 100644 --- a/home/modules/niri.nix +++ b/home/modules/niri.nix @@ -100,14 +100,17 @@ in "Super+B".action = spawn ["${pkgs.nushell}/bin/nu" "/home/chris/bin/nirilof" "org.qutebrowser.qutebrowser" "qutebrowser"]; "Super+Alt+Space".action.spawn = "${pkgs.cosmic-launcher}/bin/cosmic-launcher"; "Super+Space".action.spawn = ["${pkgs.fish}/bin/fish" "-c" "rofi -no-lazy-grab -modi combi -show combi -combi-modi drun,run"]; - "Super+Alt+W".action.spawn = "rofi -i -show window"; + "Super+Shift+W".action.spawn = "rofi -i -show window"; "Super+V".action = spawn ["${pkgs.fish}/bin/fish" "-c" "${pkgs.cliphist}/bin/cliphist list | ${pkgs.rofi-wayland}/bin/rofi -p '󱃔 ' -dmenu | ${pkgs.cliphist}/bin/cliphist decode | ${pkgs.wl-clipboard}/bin/wl-copy"]; "Super+I".action.spawn = ["alacritty" "--class" "btm" "-e" "btm"]; + "Super+Alt+B".action.spawn = ["alacritty" "--class" "bluetui" "-e" "bluetui"]; + "Super+Alt+W".action.spawn = ["alacritty" "--class" "impala" "-e" "impala"]; "Super+A".action.spawn = ["alacritty" "--class" "pulsemixer" "-e" "pulsemixer"]; + "Super+Shift+F".action.spawn = ["cosmic-files"]; "Super+Shift+Q".action = quit; "Super+O".action = toggle-overview; "Super+F".action = fullscreen-window; - "Super+Shift+F".action = toggle-windowed-fullscreen; + "Super+Alt+F".action = toggle-windowed-fullscreen; "Super+C".action = close-window; "Super+Shift+C".action = center-window; "Super+P".action.spawn = "/home/chris/bin/rbw.sh"; @@ -181,11 +184,23 @@ in open-floating = true; } { - matches = [{app-id = "btm";}]; + matches = [{app-id = "bluetui";}]; open-floating = true; default-column-width.proportion = 0.7; default-window-height.proportion = 0.7; } + { + matches = [{app-id = "impala";}]; + open-floating = true; + default-column-width.proportion = 0.7; + default-window-height.proportion = 0.7; + } + { + matches = [{app-id = "btm";}]; + open-floating = true; + default-column-width.proportion = 0.9; + default-window-height.proportion = 0.9; + } { matches = [{app-id = "pulsemixer";}]; open-floating = true; diff --git a/pkgs/desktop-packages.nix b/pkgs/desktop-packages.nix index 10c6102..e18b8c2 100644 --- a/pkgs/desktop-packages.nix +++ b/pkgs/desktop-packages.nix @@ -15,6 +15,8 @@ harper mumble niri + bluetui + impala # pantalaimon ifuse dash diff --git a/systems/kaladin/hardware-configuration.nix b/systems/kaladin/hardware-configuration.nix index cc3eb54..88b6928 100644 --- a/systems/kaladin/hardware-configuration.nix +++ b/systems/kaladin/hardware-configuration.nix @@ -36,9 +36,9 @@ }; fileSystems."/run/media/chris/Storage" = - { device = "/dev/disk/by-uuid/4c7d4273-7b72-4aa8-8e1c-e281543d06cb"; + { device = "/dev/disk/by-label/Storage"; fsType = "btrfs"; - options = [ "noatime" "space_cache=v2" "clear_cache" "compress=zstd:1" ]; + options = [ "noatime" "space_cache=v2" "compress=zstd:1" ]; }; fileSystems."/run/media/chris/backup" = diff --git a/systems/syl/configuration.nix b/systems/syl/configuration.nix index e6ca95c..3e392e7 100644 --- a/systems/syl/configuration.nix +++ b/systems/syl/configuration.nix @@ -18,6 +18,7 @@ hardware.acpilight.enable = lib.mkDefault true; networking.interfaces.wlp170s0.useDHCP = true; + networking.wireless.iwd.enable = true; hardware.uinput.enable = true; hardware.bluetooth.enable = true;