call flake directly

This commit is contained in:
Sakooooo 2024-07-05 10:10:40 +04:00
parent e49265ca4d
commit 2a4aeefa63
Signed by: sako
GPG key ID: FE52FD65B76E4751

View file

@ -1,4 +1,5 @@
{
inputs,
outputs,
options,
config,
@ -14,8 +15,11 @@ in {
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
discord
users.users.sako.packages = [
(inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.discord-canary.override {
withOpenASAR = true;
withVencord = true;
})
];
};
}