{ den, __findFile, modules, lib, ... }: { den.aspects.doloro-laptop = { includes = [ den.aspects.doloro-shared modules.hyprland modules.sops modules.fish ( { default = true; }) modules.kitty modules.stylix modules.quickshell modules.lavd modules.omp # modules.podman # modules.openvivo ]; nixos = { config, pkgs, ... }: { users.users.doloro = { isNormalUser = true; shell = pkgs.fish; hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path; }; }; homeManager = { pkgs, ... }: { xdg.configFile."hypr/hyprland-local.lua" = { text = '' -- Host overrides (laptop) hl.config({ ["decoration.blur.enabled"] = false }) hl.config({ ["input.sensitivity"] = 0 }) hl.device({ name = "default", sensitivity = 0 }) ''; }; home.packages = with pkgs; [ telegram-desktop equibop obsidian # intel-gpu-tools brightnessctl surface-control ]; nixpkgs.config.allowUnfree = true; }; }; }