update ankaa

This commit is contained in:
Ethan Simmons
2026-03-14 13:37:43 -05:00
parent 48eb4a1aca
commit f81955e1b1
4 changed files with 20 additions and 17 deletions
Generated
+15 -15
View File
@@ -80,11 +80,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1772633327, "lastModified": 1773422513,
"narHash": "sha256-jl+DJB2DUx7EbWLRng+6HNWW/1/VQOnf0NsQB4PlA7I=", "narHash": "sha256-MPjR48roW7CUMU6lu0+qQGqj92Kuh3paIulMWFZy+NQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "5a75730e6f21ee624cbf86f4915c6e7489c74acc", "rev": "ef12a9a2b0f77c8fa3dda1e7e494fca668909056",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -99,11 +99,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1772630284, "lastModified": 1773511748,
"narHash": "sha256-wF+8Otz2DEBziA/DtaQcedas4McTcdZdQkFmuw4OQ6s=", "narHash": "sha256-N9f0Mnz9HgRlKPWfoojHrReXReHRP3VO5Clj+ub4sMU=",
"owner": "ggerganov", "owner": "ggerganov",
"repo": "llama.cpp", "repo": "llama.cpp",
"rev": "d969e933e172821b4519f66aa4b660bc0846b320", "rev": "609ea50026a336a6cf3c02e596792477530b5928",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -177,11 +177,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1772542754, "lastModified": 1773389992,
"narHash": "sha256-WGV2hy+VIeQsYXpsLjdr4GvHv5eECMISX1zKLTedhdg=", "narHash": "sha256-wvfdLLWJ2I9oEpDd9PfMA8osfIZicoQ5MT1jIwNs9Tk=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8c809a146a140c5c8806f13399592dbcb1bb5dc4", "rev": "c06b4ae3d6599a672a6210b7021d699c351eebda",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -207,11 +207,11 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1772173633, "lastModified": 1772736753,
"narHash": "sha256-MOH58F4AIbCkh6qlQcwMycyk5SWvsqnS/TCfnqDlpj4=", "narHash": "sha256-au/m3+EuBLoSzWUCb64a/MZq6QUtOV8oC0D9tY2scPQ=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c0f3d81a7ddbc2b1332be0d8481a672b4f6004d6", "rev": "917fec990948658ef1ccd07cef2a1ef060786846",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -238,11 +238,11 @@
"nixpkgs": "nixpkgs_3" "nixpkgs": "nixpkgs_3"
}, },
"locked": { "locked": {
"lastModified": 1772495394, "lastModified": 1773096132,
"narHash": "sha256-hmIvE/slLKEFKNEJz27IZ8BKlAaZDcjIHmkZ7GCEjfw=", "narHash": "sha256-M3zEnq9OElB7zqc+mjgPlByPm1O5t2fbUrH3t/Hm5Ag=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "1d9b98a29a45abe9c4d3174bd36de9f28755e3ff", "rev": "d1ff3b1034d5bab5d7d8086a7803c5a5968cd784",
"type": "github" "type": "github"
}, },
"original": { "original": {
+1
View File
@@ -62,6 +62,7 @@
services.hardware.openrgb.enable = true; services.hardware.openrgb.enable = true;
services.avahi.enable = true; services.avahi.enable = true;
services.flatpak.enable = true;
services.udev.extraRules = '' services.udev.extraRules = ''
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0660", GROUP="users", TAG+="uaccess", TAG+="udev-acl" KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0660", GROUP="users", TAG+="uaccess", TAG+="udev-acl"
+2 -1
View File
@@ -13,7 +13,8 @@ in
environment.systemPackages = with pkgs; [] environment.systemPackages = with pkgs; []
++ optional cfg.pipewire.enable pulseaudio ++ optional cfg.pipewire.enable pulseaudio
++ optional cfg.music.enable supersonic ++ optional cfg.music.enable supersonic
++ optional cfg.tools.helvum helvum # FIXME: unmaintained
# ++ optional cfg.tools.helvum helvum
++ optional cfg.tools.easyeffects easyeffects ++ optional cfg.tools.easyeffects easyeffects
++ optional cfg.tools.pavucontrol pavucontrol; ++ optional cfg.tools.pavucontrol pavucontrol;
+2 -1
View File
@@ -9,7 +9,8 @@ with lib; let
in in
{ {
config.programs.light.enable = mkIf cfg.backlight.enable true; # FIXME: No longer maintained
# config.programs.light.enable = mkIf cfg.backlight.enable true;
config.powerManagement.powertop.enable = mkIf cfg.powersave.enable true; config.powerManagement.powertop.enable = mkIf cfg.powersave.enable true;
config.services.auto-cpufreq = mkIf cfg.powersave.enable { config.services.auto-cpufreq = mkIf cfg.powersave.enable {