Migrated to 25.11, changed many things.

This commit is contained in:
2025-11-21 21:57:25 +02:00
parent d0d084be90
commit 1c745fc5f4
8 changed files with 61 additions and 74 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ in {
services.gpg-agent = {
enable = true;
enableSshSupport = true;
pinentryPackage = pkgs.pinentry-gtk2;
pinentry.package = pkgs.pinentry-gtk2;
};
home.file.".ssh/config".source = ./ssh-config;
+13 -1
View File
@@ -14,7 +14,19 @@ in {
};
config = lib.mkIf isEnabled {
hardware.pulseaudio.enable = true;
services = {
pipewire = {
enable = true;
audio.enable = true;
pulse.enable = true;
alsa = {
enable = true;
support32Bit = true;
};
jack.enable = true;
};
};
# hardware.pulseaudio.enable = true;
environment.systemPackages = with pkgs; [pavucontrol];
musnix.enable = true;
};