mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2025-05-27 17:44:17 +02:00
7 lines
145 B
Nix
7 lines
145 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.floorp = {
|
|
enable = if (config.machine.isGraphical && !config.machine.isGeneric) then true else false;
|
|
};
|
|
}
|