nix-config/enviroments/client/default.nix

18 lines
235 B
Nix

{
pkgs,
inputs,
...
}: {
imports = [
../common
];
# Enable sound with pipewire.
hardware.flipperzero.enable = true;
security.rtkit.enable = true;
environment.systemPackages = with pkgs; [
cachefilesd
];
}