17 lines
266 B
Nix
17 lines
266 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
../common
|
|
../common/home-user.nix
|
|
|
|
../../features/kitty.nix
|
|
../../features/vesktop
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
qbittorrent
|
|
spotify
|
|
teamspeak_client
|
|
];
|
|
|
|
programs.kitty.settings.font_size = 12;
|
|
}
|