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
inherit (lib) mkDefault;
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;
/*
@ -1199,6 +1218,7 @@
environment.TMPDIR = "/var/tmp";
};
boot.tmp.cleanOnBoot = true;
# boot.uki.tries = 3;
# services.irqbalance.enable = true;
# this is not ready for primetime yet

View file

@ -266,6 +266,7 @@ in
environment = {
systemPackages = with pkgs; [
easyeffects
godot_4
fractal
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 = {
settings = {
env = [

View file

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