16 lines
216 B
Nix
16 lines
216 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./rofi
|
||
|
./kitty.nix
|
||
|
./zathura.nix
|
||
|
];
|
||
|
home-manager.users.moritz.home.packages = with pkgs; [
|
||
|
neofetch
|
||
|
keepassxc
|
||
|
spotify
|
||
|
spicetify-cli
|
||
|
];
|
||
|
}
|