60 lines
1.3 KiB
Nix
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;
|
|
};
|
|
};
|
|
}
|