dotfiles/modules/apps/default.nix

16 lines
234 B
Nix
Raw Normal View History

2021-09-14 20:55:50 +02:00
{ config, lib, pkgs, ... }:
{
imports = [
./rofi
./kitty.nix
./zathura.nix
];
home-manager.users.moritz.home.packages = with pkgs; [
neofetch
2021-09-14 23:34:44 +02:00
unstable.keepassxc
unstable.spotify
2021-09-14 20:55:50 +02:00
spicetify-cli
];
}