ba
This commit is contained in:
@@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{ modules, ... }:
|
||||
{
|
||||
modules.dunst = {
|
||||
homeManager = {
|
||||
services.dunst = {
|
||||
enable = true;
|
||||
settings = {
|
||||
@@ -10,4 +11,5 @@
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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"}'';
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user