Files
dotfiles/config/hosts/aspects/doloro-laptop/home.nix
T
2026-08-05 02:57:59 +01:00

60 lines
1.3 KiB
Nix

{
den,
__findFile,
modules,
lib,
...
}:
{
den.aspects.doloro-laptop = {
includes = [
<den/primary-user>
den.aspects.doloro-shared
modules.hyprland
<modules/hyprland/doloro-settings>
modules.sops
modules.fish
(<modules/helium> {
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;
};
};
}