{ den, __findFile, modules, ... }: { den.aspects.doloro-laptop = { includes = [ den.aspects.doloro-shared modules.hyprland modules.sops modules.fish ( { default = true; }) modules.kitty modules.stylix modules.quickshell ]; 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; }; }; home.packages = with pkgs; [ telegram-desktop equibop obsidian ]; nixpkgs.config.allowUnfree = true; }; }; }