cleanup and fixes

This commit is contained in:
foglar 2025-01-05 13:16:21 +01:00
parent 5a93a7b4c6
commit f86626e623
5 changed files with 23 additions and 14 deletions

View File

@ -77,7 +77,7 @@
programs.auto-cpufreq.enable = true;
programs.nix-ld.dev.enable = true;
environment.systemPackages = [inputs.ghostty.packages.x86_64-linux.default];
environment.systemPackages = [inputs.install-script.packages.x86_64-linux.default];
#services.twingate.enable = true;

View File

@ -25,7 +25,8 @@
ranger
unzip
fd
imagemagick # convert images from formats like jpg, png, etc.
imagemagick
toybox # convert images from formats like jpg, png, etc.
]
++ (
if pkgs.system == "x86_64-linux"

View File

@ -21,6 +21,7 @@
tcpdump
sqlmap
tor-browser
android-udev-rules
];
};
}

View File

@ -2,6 +2,7 @@
pkgs,
lib,
config,
inputs,
...
}: {
options = {
@ -10,7 +11,8 @@
};
config = lib.mkIf config.app_list.programming.enable {
home.packages = with pkgs; [
home.packages =
(with pkgs; [
arduino-ide
distrobox
go
@ -20,7 +22,12 @@
dotnet-sdk_8
git-ignore
lazygit
];
])
++ (
with inputs.ghostty.packages.x86_64-linux; [
default
]
);
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [

View File

@ -7,7 +7,7 @@
config = lib.mkIf config.sys.audio.enable {
# Enable sound with pipewire.
hardware.pulseaudio.enable = false;
services.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;