feat: basic webcord (?)
This commit is contained in:
parent
9b9043858e
commit
c4c4b83b48
|
@ -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;
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue