{ 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 ]; nixos = { config, pkgs, ... }: { users.users.doloro = { isNormalUser = true; shell = pkgs.fish; hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path; }; }; homeManager = { pkgs, ... }: { wayland.windowManager.hyprland.settings = { monitor = [ "eDP-1, 2880x1800@120, 0x0, 2" ]; input = { kb_layout = "gb"; follow_mouse = 2; sensitivity = 0; }; decoration = { blur = lib.mkForce { enabled = false; passes = 1; new_optimizations = true; ignore_opacity = false; }; }; }; home.packages = with pkgs; [ telegram-desktop equibop obsidian ]; nixpkgs.config.allowUnfree = true; }; }; }