feat: basic webcord (?)

This commit is contained in:
Laureηt 2022-12-24 16:58:49 +01:00
parent 9b9043858e
commit c4c4b83b48
Signed by: Laurent
SSH key fingerprint: SHA256:kZEpW8cMJ54PDeCvOhzreNr4FSh6R13CMGH/POoO8DI
2 changed files with 18 additions and 1 deletions

View file

@ -12,7 +12,7 @@
webcord.url = "github:fufexan/webcord-flake";
};
outputs = { nixpkgs, home-manager, ... }@inputs: {
outputs = { nixpkgs, home-manager, webcord, ... }@inputs: {
# colmena
colmena = {
meta = {
@ -36,6 +36,9 @@
# personnal laptop
neodymium = { ... }: {
home-manager.users.laurent = {
imports = [ webcord.homeManagerModules.default ];
};
deployment = {
allowLocalDeployment = true;
targetHost = null;

View file

@ -9,6 +9,13 @@ let
sha256 = "w9XVtEe7TqzxxGUCDUR9BFkzLZjG8XrplXJ3lX6f+x0=";
};
catppuccin-discord = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "discord";
rev = "159aac939d8c18da2e184c6581f5e13896e11697";
sha256 = "sha256-cWpog52Ft4hqGh8sMWhiLUQp/XXipOPnSTG6LwUAGGA=";
};
in {
imports = [ ./hardware-configuration.nix ];
@ -207,6 +214,13 @@ in {
nix-direnv.enable = true;
};
programs.webcord = {
enable = true;
themes = {
CatpuccinMocha = "${catppuccin-discord}/themes/mocha.theme.css";
};
};
programs.git = {
enable = true;
userName = "Laureηt";