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