13 lines
187 B
Nix
13 lines
187 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../common
|
|
];
|
|
|
|
# Enable sound with pipewire.
|
|
hardware.flipperzero.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
cachefilesd
|
|
];
|
|
}
|