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