HTPC updates
All checks were successful
/ check (push) Successful in 5m19s

This commit is contained in:
Daniel Flanagan 2024-12-06 08:22:35 -06:00
parent b7ce066115
commit db9ec77114
3 changed files with 31 additions and 1 deletions

View file

@ -1014,7 +1014,26 @@
wifi = {lib, ...}: let wifi = {lib, ...}: let
inherit (lib) mkDefault; inherit (lib) mkDefault;
in { in {
networking.networkmanager.enable = mkDefault true; networking.networkmanager = {
enable = mkDefault true;
# ensureProfiles = {
# profiles = {
# home-wifi = {
# id="home-wifi";
# permissions = "";
# type = "wifi";
# };
# wifi = {
# ssid = "";
# };
# wifi-security = {
# # auth-alg = "";
# # key-mgmt = "";
# psk = "";
# };
# };
# };
};
systemd.services.NetworkManager-wait-online.enable = mkDefault false; systemd.services.NetworkManager-wait-online.enable = mkDefault false;
/* /*
@ -1199,6 +1218,7 @@
environment.TMPDIR = "/var/tmp"; environment.TMPDIR = "/var/tmp";
}; };
boot.tmp.cleanOnBoot = true; boot.tmp.cleanOnBoot = true;
# boot.uki.tries = 3;
# services.irqbalance.enable = true; # services.irqbalance.enable = true;
# this is not ready for primetime yet # this is not ready for primetime yet

View file

@ -266,6 +266,7 @@ in
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [
easyeffects
godot_4 godot_4
fractal fractal
prismlauncher prismlauncher
@ -285,6 +286,14 @@ in
}; };
}; };
services.easyeffects = {
enable = true;
preset = "philonmetal";
# clone from https://github.com/ceiphr/ee-framework-presets
# then `cp *.json ~/.config/easyeffects/output`
# TODO: nixify this
};
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
settings = { settings = {
env = [ env = [

View file

@ -1,4 +1,5 @@
{ {
pkgs,
config, config,
lib, lib,
... ...