7 lines
149 B
Nix
7 lines
149 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [ (import ./theme-template.nix) ];
|
|
home.packages = with pkgs; [
|
|
(discord.override { withVencord = true; })
|
|
];
|
|
} |