66 lines
1.4 KiB
Nix
66 lines
1.4 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 = ''
|
|
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;
|
|
};
|
|
};
|
|
}
|