This commit is contained in:
2026-02-17 23:40:43 +00:00
parent 1caf2a2583
commit 32d8f9bd4f
7 changed files with 50 additions and 17 deletions

View File

@@ -4,6 +4,7 @@
nixos =
{
modulesPath,
lib,
pkgs,
config,
...
@@ -23,8 +24,8 @@
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
nixpkgs.hostPlatform = pkgs.lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = pkgs.lib.mkDefault config.hardware.enableRedistributableFirmware;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
};
}

View File

@@ -11,12 +11,18 @@
den.aspects.doloro-shared
modules.sops
modules.hyprland
modules.fish
modules.tuigreet
modules.kitty
modules.fonts
<modules/hyprland/doloro-settings>
(modules.obs {
virtual_audio_devices = true;
autostart = true;
})
<modules/common/gaming>
modules.helium
modules.stylix
];
nixos =
{ config, pkgs, ... }:
@@ -29,9 +35,26 @@
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; [
legcord
telegram
telegram-desktop
];
};
};

View File

@@ -31,6 +31,8 @@
"rd.systemd.show_status=auto"
];
services.openssh.enable = true;
networking.networkmanager.enable = true;
networking.firewall.enable = false;
@@ -54,6 +56,7 @@
"exec"
];
};
services.gnome.gnome-keyring.enable = true;
hardware.nvidia = {

View File

@@ -1,20 +1,19 @@
{ den, __findFile, ... }:
{
# Homes
# den.homes.x86_64-linux.doloro-desktop = {
# userName = "doloro";
# };
den.homes.x86_64-linux.doloro-desktop = {
userName = "doloro";
};
# TODO
den.homes.x86_64-linux.doloro-laptop = {
userName = "doloro";
};
# Machines
# den.hosts.x86_64-linux.desktop = {
# users.doloro = {
# includes = [ <modules/user/groups> ];
# aspect = "doloro-desktop";
# };
# };
den.hosts.x86_64-linux.desktop = {
users.doloro = {
aspect = "doloro-desktop";
};
};
# TODO
den.hosts.x86_64-linux.laptop = {
users.doloro = {

View File

@@ -1,11 +1,13 @@
{ modules, ... }:
{
modules.dunst = {
services.dunst = {
enable = true;
settings = {
global = {
font = "Noto Nerd Font 8";
homeManager = {
services.dunst = {
enable = true;
settings = {
global = {
font = "Noto Nerd Font 8";
};
};
};
};

View File

@@ -18,6 +18,7 @@
home.packages = [
inputs.heliumFlake.packages.x86_64-linux.helium
];
nixpkgs.config.allowUnfree = true;
# Gives me widevine support. yay
xdg.configFile."net.imput.helium/WidevineCdm/latest-component-updated-widevine-cdm" = {
text = ''{"Path":"${pkgs.widevine-cdm}/share/google/chrome/WidevineCdm"}'';

View File

@@ -3,6 +3,9 @@
modules.hyprland = {
provides = {
doloro-settings = {
includes = [
modules.dunst
];
homeManager =
{ pkgs, home, ... }:
{
@@ -10,6 +13,7 @@
pkgs.hyprcursor
pkgs.wlogout
pkgs.tofi
pkgs.killall
];
home.pointerCursor = {
enable = true;