12 lines
178 B
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;
|
|
}
|