mako theming 1
This commit is contained in:
18
home-modules/email.nix
Normal file
18
home-modules/email.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ config, pkgs, lib, system, user, allowed, secrets, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
thunderbird
|
||||
];
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# home.file.".config/meli.config" = {
|
||||
|
||||
# };
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -6,27 +6,27 @@
|
||||
delta
|
||||
|
||||
# only works on spec arch, chage url for others
|
||||
(stdenv.mkDerivation {
|
||||
name = "easycommit";
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/blackironj/easycommit/releases/download/v0.0.1/easycommit-v0.0.1-linux-amd64.tar.gz";
|
||||
sha256 = "sha256-Ip5wfVe/RzCxGGh1YFBllAn84nD7mUXbnMko+ue/C2E=";
|
||||
};
|
||||
phases = ["installPhase"];
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
tar xf $src -C $out/
|
||||
ls -la $out
|
||||
mv $out/easycommit $out/bin/
|
||||
chmod +x $out/bin/easycommit
|
||||
'';
|
||||
})
|
||||
# (stdenv.mkDerivation {
|
||||
# name = "easycommit";
|
||||
# src = pkgs.fetchurl {
|
||||
# url = "https://github.com/blackironj/easycommit/releases/download/v0.0.1/easycommit-v0.0.1-linux-amd64.tar.gz";
|
||||
# sha256 = "sha256-Ip5wfVe/RzCxGGh1YFBllAn84nD7mUXbnMko+ue/C2E=";
|
||||
# };
|
||||
# phases = ["installPhase"];
|
||||
# installPhase = ''
|
||||
# mkdir -p $out/bin
|
||||
# tar xf $src -C $out/
|
||||
# ls -la $out
|
||||
# mv $out/easycommit $out/bin/
|
||||
# chmod +x $out/bin/easycommit
|
||||
# '';
|
||||
# })
|
||||
];
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = ''Lennart J. Kurzweg (Nx2)'';
|
||||
userEmail = "nx2@nx2.site";
|
||||
userEmail = "git@nx2.site";
|
||||
delta = {
|
||||
enable = true;
|
||||
options = {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, rice, ... }:
|
||||
|
||||
{
|
||||
home.packages = [
|
||||
@@ -7,6 +7,10 @@
|
||||
];
|
||||
services.mako = {
|
||||
enable = true;
|
||||
defaultTimeout = 60000;
|
||||
defaultTimeout = 5;
|
||||
backgroundColor = "#${rice.color.background}";
|
||||
textColor = "#${rice.color.foreground}";
|
||||
borderColor = "#${rice.color.border}";
|
||||
font = "#${rice.font.code.name}";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user