nix-infra/modules/graphical/default.nix

14 lines
209 B
Nix
Raw Normal View History

2024-03-24 18:02:21 +00:00
{ pkgs, config, lib, ... }: {
home-manager.users.sammy = {
programs = {
librewolf.enable = true;
kitty = {
enable = true;
theme = "Catppuccin-Mocha";
};
};
};
}