feat: basic webcord (?)
This commit is contained in:
parent
9b9043858e
commit
c4c4b83b48
|
@ -12,7 +12,7 @@
|
||||||
webcord.url = "github:fufexan/webcord-flake";
|
webcord.url = "github:fufexan/webcord-flake";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { nixpkgs, home-manager, ... }@inputs: {
|
outputs = { nixpkgs, home-manager, webcord, ... }@inputs: {
|
||||||
# colmena
|
# colmena
|
||||||
colmena = {
|
colmena = {
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -36,6 +36,9 @@
|
||||||
|
|
||||||
# personnal laptop
|
# personnal laptop
|
||||||
neodymium = { ... }: {
|
neodymium = { ... }: {
|
||||||
|
home-manager.users.laurent = {
|
||||||
|
imports = [ webcord.homeManagerModules.default ];
|
||||||
|
};
|
||||||
deployment = {
|
deployment = {
|
||||||
allowLocalDeployment = true;
|
allowLocalDeployment = true;
|
||||||
targetHost = null;
|
targetHost = null;
|
||||||
|
|
|
@ -9,6 +9,13 @@ let
|
||||||
sha256 = "w9XVtEe7TqzxxGUCDUR9BFkzLZjG8XrplXJ3lX6f+x0=";
|
sha256 = "w9XVtEe7TqzxxGUCDUR9BFkzLZjG8XrplXJ3lX6f+x0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
catppuccin-discord = pkgs.fetchFromGitHub {
|
||||||
|
owner = "catppuccin";
|
||||||
|
repo = "discord";
|
||||||
|
rev = "159aac939d8c18da2e184c6581f5e13896e11697";
|
||||||
|
sha256 = "sha256-cWpog52Ft4hqGh8sMWhiLUQp/XXipOPnSTG6LwUAGGA=";
|
||||||
|
};
|
||||||
|
|
||||||
in {
|
in {
|
||||||
imports = [ ./hardware-configuration.nix ];
|
imports = [ ./hardware-configuration.nix ];
|
||||||
|
|
||||||
|
@ -207,6 +214,13 @@ in {
|
||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.webcord = {
|
||||||
|
enable = true;
|
||||||
|
themes = {
|
||||||
|
CatpuccinMocha = "${catppuccin-discord}/themes/mocha.theme.css";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "Laureηt";
|
userName = "Laureηt";
|
||||||
|
|
Loading…
Reference in a new issue