mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-09 23:26:24 +00:00
15 lines
235 B
Nix
15 lines
235 B
Nix
|
{ lib, pkgs, ... }:
|
||
|
with lib.hm.gvariant;
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
celluloid
|
||
|
];
|
||
|
|
||
|
dconf.settings = {
|
||
|
"io/github/celluloid-player/celluloid" = {
|
||
|
csd-enable = false;
|
||
|
dark-theme-enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|