Merge remote-tracking branch 'origin/main'

This commit is contained in:
Daniel Flanagan 2024-06-10 09:56:31 -05:00
commit aad7afd5e5
5 changed files with 18 additions and 33 deletions

View file

@ -10,12 +10,7 @@
firefox
];
gtk = {
enable = true;
# Currently failing: https://github.com/NixOS/nixpkgs/issues/298043
# Overlay from https://github.com/NixOS/nixpkgs/issues/298043#issuecomment-2015319496
# Fix on master but not yet in unstable https://github.com/NixOS/nixpkgs/pull/297683
theme = {
gtk.theme = {
name = "Catppuccin-Mocha-Compact-Sapphire-Dark";
package = pkgs.catppuccin-gtk.override {
accents = ["sapphire"];
@ -24,7 +19,6 @@
variant = "mocha";
};
};
};
home.pointerCursor = {
name = "Bibata-Modern-Classic";

View file

@ -3,15 +3,10 @@
# environment?
imports = [
{
# DAW
environment.systemPackages = with pkgs; [
ardour
];
}
{
# synths/VSTs
environment.systemPackages = with pkgs; [
helm
helvum # pipewire graph/patchbay GUI
ardour # DAW
helm # synth
];
}
];

View file

@ -1,14 +1,4 @@
{pkgs, ...}: {
# enable flatpaks
services.flatpak.enable = true;
# enable appimages
boot.binfmt.registrations.appimage = {
wrapInterpreterInShell = false;
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
recognitionType = "magic";
offset = 0;
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff'';
magicOrExtension = ''\x7fELF....AI\x02'';
};
programs.appimage.binfmt = true;
}

View file

@ -16,6 +16,7 @@
inputs.hardware.nixosModules.common-cpu-amd
inputs.hardware.nixosModules.common-pc-ssd
outputs.nixosModules.pipewire-low-latency
outputs.nixosModules.music-production
desktop-usage
podman
@ -143,7 +144,7 @@
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
# powerOnBoot = true; # this is the default
};
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";

View file

@ -70,5 +70,10 @@
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
system.stateVersion = "23.11";
}