Compare commits

..

3 Commits

Author SHA1 Message Date
Ethan Simmons f8ef7b91b6 update ankaa 2026-05-08 12:54:04 -05:00
Ethan Simmons f81955e1b1 update ankaa 2026-05-08 12:54:04 -05:00
Ethan Simmons 48eb4a1aca Add calibre 2026-05-08 12:54:04 -05:00
4 changed files with 21 additions and 17 deletions
Generated
+15 -15
View File
@@ -80,11 +80,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1772633327, "lastModified": 1776046499,
"narHash": "sha256-jl+DJB2DUx7EbWLRng+6HNWW/1/VQOnf0NsQB4PlA7I=", "narHash": "sha256-Wzc4nn07/0RL21ypPHRzNDQZcjhIC8LaYo7QJQjM5T4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "5a75730e6f21ee624cbf86f4915c6e7489c74acc", "rev": "287f84846c1eb3b72c986f5f6bebcff0bd67440d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -99,11 +99,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1772630284, "lastModified": 1776100724,
"narHash": "sha256-wF+8Otz2DEBziA/DtaQcedas4McTcdZdQkFmuw4OQ6s=", "narHash": "sha256-4WsXVFUFZwMLmMj2Ur1naf+THAPSjtmjckwrYfGGDa8=",
"owner": "ggerganov", "owner": "ggerganov",
"repo": "llama.cpp", "repo": "llama.cpp",
"rev": "d969e933e172821b4519f66aa4b660bc0846b320", "rev": "a8bad3842e92f61dadcd71417f6e10b68bff0ee4",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -177,11 +177,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1772542754, "lastModified": 1775710090,
"narHash": "sha256-WGV2hy+VIeQsYXpsLjdr4GvHv5eECMISX1zKLTedhdg=", "narHash": "sha256-ar3rofg+awPB8QXDaFJhJ2jJhu+KqN/PRCXeyuXR76E=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8c809a146a140c5c8806f13399592dbcb1bb5dc4", "rev": "4c1018dae018162ec878d42fec712642d214fdfa",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -207,11 +207,11 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1772173633, "lastModified": 1775888245,
"narHash": "sha256-MOH58F4AIbCkh6qlQcwMycyk5SWvsqnS/TCfnqDlpj4=", "narHash": "sha256-nwASzrRDD1JBEu/o8ekKYEXm/oJW6EMCzCRdrwcLe90=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c0f3d81a7ddbc2b1332be0d8481a672b4f6004d6", "rev": "13043924aaa7375ce482ebe2494338e058282925",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -238,11 +238,11 @@
"nixpkgs": "nixpkgs_3" "nixpkgs": "nixpkgs_3"
}, },
"locked": { "locked": {
"lastModified": 1772495394, "lastModified": 1775971308,
"narHash": "sha256-hmIvE/slLKEFKNEJz27IZ8BKlAaZDcjIHmkZ7GCEjfw=", "narHash": "sha256-VKp9bhVSm0bT6JWctFy06ocqxGGnWHi1NfoE90IgIcY=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "1d9b98a29a45abe9c4d3174bd36de9f28755e3ff", "rev": "31ac5fe5d015f76b54058c69fcaebb66a55871a4",
"type": "github" "type": "github"
}, },
"original": { "original": {
+2
View File
@@ -57,10 +57,12 @@
orca-slicer orca-slicer
qemu qemu
protonvpn-gui protonvpn-gui
calibre
]; ];
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 {