cleanup and fixes
This commit is contained in:
parent
5a93a7b4c6
commit
f86626e623
@ -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;
|
||||
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -21,6 +21,7 @@
|
||||
tcpdump
|
||||
sqlmap
|
||||
tor-browser
|
||||
android-udev-rules
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
options = {
|
||||
@ -10,17 +11,23 @@
|
||||
};
|
||||
|
||||
config = lib.mkIf config.app_list.programming.enable {
|
||||
home.packages = with pkgs; [
|
||||
arduino-ide
|
||||
distrobox
|
||||
go
|
||||
jq
|
||||
conda
|
||||
jetbrains.pycharm-professional
|
||||
dotnet-sdk_8
|
||||
git-ignore
|
||||
lazygit
|
||||
];
|
||||
home.packages =
|
||||
(with pkgs; [
|
||||
arduino-ide
|
||||
distrobox
|
||||
go
|
||||
jq
|
||||
conda
|
||||
jetbrains.pycharm-professional
|
||||
dotnet-sdk_8
|
||||
git-ignore
|
||||
lazygit
|
||||
])
|
||||
++ (
|
||||
with inputs.ghostty.packages.x86_64-linux; [
|
||||
default
|
||||
]
|
||||
);
|
||||
|
||||
nixpkgs.config.allowUnfreePredicate = pkg:
|
||||
builtins.elem (lib.getName pkg) [
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user