diff --git a/modules/features/tiling/niri.nix b/modules/features/tiling/niri.nix index a10ad6f..00452e9 100644 --- a/modules/features/tiling/niri.nix +++ b/modules/features/tiling/niri.nix @@ -134,6 +134,10 @@ matches = [ { app-id="^element$"; } ]; open-maximized = true; } + { + matches = [ { app-id = "^brave-.+-Default$"; title = "^Bitwarden$"; } ]; + open-floating = true; + } ]; binds = { diff --git a/modules/hosts/crow/configuration.nix b/modules/hosts/crow/configuration.nix index 203b64f..4aa15e5 100644 --- a/modules/hosts/crow/configuration.nix +++ b/modules/hosts/crow/configuration.nix @@ -99,6 +99,15 @@ blueman.enable = true; }; + services.ollama = { + enable = true; + package = pkgs.ollama-rocm; + environmentVariables = { + HSA_OVERRIDE_GFX_VERSION = "10.3.0"; + }; + loadModels = [ "deepseek-r1:32b" "qwen3.5:14b" ]; + }; + boot = { loader = { systemd-boot.enable = true; diff --git a/modules/users/nest.nix b/modules/users/nest.nix index 77851ed..93af8e5 100644 --- a/modules/users/nest.nix +++ b/modules/users/nest.nix @@ -3,7 +3,7 @@ users.users.nest = { description = "nest"; isNormalUser = true; - extraGroups = [ "wheel" "network" ]; + extraGroups = [ "wheel" "network" "render" "video" ]; shell = pkgs.zsh; }; };