{ 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 = '' decoration { blur { enabled = false } } input { kb_layout = "gb" follow_mouse = 2 sensitivity = 0 } ''; }; home.packages = with pkgs; [ telegram-desktop equibop obsidian # intel-gpu-tools brightnessctl surface-control ]; nixpkgs.config.allowUnfree = true; }; }; }