nix-config/home/common/desktop/default.nix

12 lines
178 B
Nix

{ pkgs, ... }: {
imports = [
./kitty.nix
];
home.packages = with pkgs; [
# programs
firefox # you need a web browser
];
fonts.fontconfig.enable = true;
}