nix-infra/modules/graphical/default.nix
2024-03-24 19:02:21 +01:00

13 lines
209 B
Nix

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