14 lines
209 B
Nix
14 lines
209 B
Nix
|
{ pkgs, config, lib, ... }: {
|
||
|
home-manager.users.sammy = {
|
||
|
programs = {
|
||
|
|
||
|
librewolf.enable = true;
|
||
|
|
||
|
kitty = {
|
||
|
enable = true;
|
||
|
theme = "Catppuccin-Mocha";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|