16 lines
194 B
Nix
Executable File
16 lines
194 B
Nix
Executable File
{ config, lib, ... }:
|
|
|
|
{
|
|
programs.librewolf = {
|
|
enable = true;
|
|
};
|
|
|
|
catppuccin.librewolf = {
|
|
enable = true;
|
|
flavor = "mocha";
|
|
accent = "lavender";
|
|
force = true;
|
|
};
|
|
|
|
}
|