54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
den,
|
|
__findFile,
|
|
modules,
|
|
...
|
|
}:
|
|
{
|
|
den.aspects.doloro-laptop = {
|
|
includes = [
|
|
<den/primary-user>
|
|
den.aspects.doloro-shared
|
|
modules.hyprland
|
|
<modules/hyprland/doloro-settings>
|
|
modules.sops
|
|
modules.fish
|
|
(<modules/zen-browser> {
|
|
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
|
|
legcord
|
|
obsidian
|
|
];
|
|
nixpkgs.config.allowUnfree = true;
|
|
};
|
|
};
|
|
}
|