16 lines
167 B
Nix
16 lines
167 B
Nix
|
{ pkgs, ...}:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./alacritty.nix
|
||
|
./firefox.nix
|
||
|
./fonts.nix
|
||
|
];
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
vlc
|
||
|
bitwarden
|
||
|
pavucontrol
|
||
|
];
|
||
|
}
|