1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Theme discord with ThemeNix

This commit is contained in:
RGBCube 2023-12-01 15:04:49 +03:00
parent ef8608f15f
commit 35fa465667
No known key found for this signature in database
2 changed files with 10 additions and 6 deletions

6
flake.lock generated
View file

@ -199,11 +199,11 @@
},
"themes": {
"locked": {
"lastModified": 1701334779,
"narHash": "sha256-j3T9R/Rc46S8TbD/Qtvqk9ms0m+Tbr4l1OB45NcVppI=",
"lastModified": 1701432092,
"narHash": "sha256-ukT9O6CTiZJ2u9f+NwJ/gKUH8KNPrWJAe+ykbCql4yI=",
"owner": "RGBCube",
"repo": "ThemeNix",
"rev": "de638a3a6fca350b6bdb0e0e0fb4984d53dea36e",
"rev": "edf1d71cb1b16a32fb10b91bbc74afec82de7cf0",
"type": "github"
},
"original": {

View file

@ -1,8 +1,12 @@
{ pkgs, homePackages, ... }:
{ lib, pkgs, upkgs, homeConfiguration, homePackages, ... }: lib.recursiveUpdate
with pkgs; homePackages "nixos" [
(homeConfiguration "nixos" {
xdg.configFile."Vencord/settings/quickCss.css".text = upkgs.theme.discordCss;
})
(with pkgs; homePackages "nixos" [
(discord.override {
withOpenASAR = true;
withVencord = true;
})
]
])