Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
aad7afd5e5
|
@ -10,19 +10,13 @@
|
||||||
firefox
|
firefox
|
||||||
];
|
];
|
||||||
|
|
||||||
gtk = {
|
gtk.theme = {
|
||||||
enable = true;
|
name = "Catppuccin-Mocha-Compact-Sapphire-Dark";
|
||||||
# Currently failing: https://github.com/NixOS/nixpkgs/issues/298043
|
package = pkgs.catppuccin-gtk.override {
|
||||||
# Overlay from https://github.com/NixOS/nixpkgs/issues/298043#issuecomment-2015319496
|
accents = ["sapphire"];
|
||||||
# Fix on master but not yet in unstable https://github.com/NixOS/nixpkgs/pull/297683
|
size = "compact";
|
||||||
theme = {
|
tweaks = ["rimless"];
|
||||||
name = "Catppuccin-Mocha-Compact-Sapphire-Dark";
|
variant = "mocha";
|
||||||
package = pkgs.catppuccin-gtk.override {
|
|
||||||
accents = ["sapphire"];
|
|
||||||
size = "compact";
|
|
||||||
tweaks = ["rimless"];
|
|
||||||
variant = "mocha";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -3,15 +3,10 @@
|
||||||
# environment?
|
# environment?
|
||||||
imports = [
|
imports = [
|
||||||
{
|
{
|
||||||
# DAW
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
ardour
|
helvum # pipewire graph/patchbay GUI
|
||||||
];
|
ardour # DAW
|
||||||
}
|
helm # synth
|
||||||
{
|
|
||||||
# synths/VSTs
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
helm
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,14 +1,4 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
# enable flatpaks
|
|
||||||
services.flatpak.enable = true;
|
services.flatpak.enable = true;
|
||||||
|
programs.appimage.binfmt = 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'';
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
inputs.hardware.nixosModules.common-cpu-amd
|
inputs.hardware.nixosModules.common-cpu-amd
|
||||||
inputs.hardware.nixosModules.common-pc-ssd
|
inputs.hardware.nixosModules.common-pc-ssd
|
||||||
outputs.nixosModules.pipewire-low-latency
|
outputs.nixosModules.pipewire-low-latency
|
||||||
|
outputs.nixosModules.music-production
|
||||||
|
|
||||||
desktop-usage
|
desktop-usage
|
||||||
podman
|
podman
|
||||||
|
@ -143,7 +144,7 @@
|
||||||
|
|
||||||
hardware.bluetooth = {
|
hardware.bluetooth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
powerOnBoot = true;
|
# powerOnBoot = true; # this is the default
|
||||||
};
|
};
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||||
|
|
||||||
|
|
|
@ -70,5 +70,10 @@
|
||||||
|
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
|
||||||
|
hardware.bluetooth = {
|
||||||
|
enable = true;
|
||||||
|
powerOnBoot = true;
|
||||||
|
};
|
||||||
|
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue