Skip to content

Commit

Permalink
preferences: add servicesSettings
Browse files Browse the repository at this point in the history
move flatpak packages to separate file
add new pulseaudio low latency configuration

remove unneeded packages and disable unused services
  • Loading branch information
JohnRTitor committed Sep 2, 2024
1 parent 7c8b864 commit ed51dda
Show file tree
Hide file tree
Showing 19 changed files with 263 additions and 225 deletions.
25 changes: 11 additions & 14 deletions dev-environment/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,21 @@
lib,
pkgs,
pkgs-edge,
userSettings,
servicesSettings,
...
}: {
# Configure the build environment

# Containers and adb should be available by default
imports = [
./adb-toolchain.nix
# ./nginx.nix # disable temporarily
imports =
[
# Use devenv instead, it's more flexible
# and contains a lot of prebuilt packages
# configured in home manager

# Use devenv instead, it's more flexible
# and contains a lot of prebuilt packages
# configured in home manager

# ./deprecated/c-toolchain.nix
./deprecated/php.nix
];
environment.systemPackages = with pkgs; [
rustup
];
# ./deprecated/c-toolchain.nix
# ./deprecated/php.nix
]
++ lib.optionals servicesSettings.adb [./adb-toolchain.nix]
++ lib.optionals servicesSettings.nginx [./nginx.nix];
}
Loading

0 comments on commit ed51dda

Please sign in to comment.