76 lines
1.7 KiB
Nix
76 lines
1.7 KiB
Nix
{
|
|
den,
|
|
__findFile,
|
|
modules,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
den.aspects.doloro-desktop = {
|
|
includes = [
|
|
<den/primary-user>
|
|
den.aspects.doloro-shared
|
|
modules.sops
|
|
modules.hyprland
|
|
modules.fish
|
|
modules.tuigreet
|
|
modules.kitty
|
|
modules.fonts
|
|
<modules/hyprland/doloro-settings>
|
|
(modules.obs {
|
|
audio = true;
|
|
autostart = true;
|
|
})
|
|
<modules/common/gaming>
|
|
# modules.helium
|
|
(<modules/helium> {
|
|
default = true;
|
|
})
|
|
# modules.niri # Testing
|
|
modules.stylix
|
|
modules.quickshell
|
|
modules.nix-ld
|
|
];
|
|
nixos =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
users.users.doloro = {
|
|
shell = pkgs.fish;
|
|
hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path;
|
|
};
|
|
};
|
|
homeManager =
|
|
{ home, pkgs, ... }:
|
|
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
monitor = [
|
|
"HDMI-A-1, 1920x1080@60, 0x0, 1"
|
|
"DP-3, 1920x1080@144, 1920x0, 1"
|
|
];
|
|
exec-once = [
|
|
"hyprctl dispatch workspace 2" # shit solution to get quickshell on the right monitor
|
|
];
|
|
workspace = [
|
|
"name:2, monitor:DP-3"
|
|
];
|
|
input = {
|
|
kb_layout = "gb";
|
|
follow_mouse = 2;
|
|
sensitivity = -0.5;
|
|
};
|
|
};
|
|
home.packages = with pkgs; [
|
|
equibop
|
|
telegram-desktop
|
|
obsidian
|
|
pear-desktop
|
|
prismlauncher
|
|
deadlock-mod-manager
|
|
gamescope
|
|
];
|
|
nixpkgs.config.allowUnfree = true;
|
|
programs.home-manager.enable = true;
|
|
};
|
|
};
|
|
}
|