mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-24 09:09:00 -05:00
13 lines
158 B
Nix
13 lines
158 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./unstable.nix
|
|
];
|
|
home = {
|
|
packages = with pkgs; [
|
|
firefox-beta
|
|
vlc
|
|
unstable.brave
|
|
];
|
|
};
|
|
}
|