Compare commits
No commits in common. "541f80ff911883ced7328593dfa9cf1524d43146" and "a5db281643ff1b0ce466eb6dfdaf4405685be856" have entirely different histories.
541f80ff91
...
a5db281643
|
@ -17,6 +17,7 @@ in {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
calc
|
calc
|
||||||
file
|
file
|
||||||
|
git
|
||||||
htop
|
htop
|
||||||
killall
|
killall
|
||||||
man-pages
|
man-pages
|
||||||
|
@ -35,11 +36,5 @@ in {
|
||||||
"EDITOR" = mkDefault "vim";
|
"EDITOR" = mkDefault "vim";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.git = {
|
|
||||||
enable = true;
|
|
||||||
userEmail = "fabian@posixlycorrect.com";
|
|
||||||
userName = "Fabian Montero";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,5 @@
|
||||||
./yubikey.nix
|
./yubikey.nix
|
||||||
./browsers.nix
|
./browsers.nix
|
||||||
./gui
|
./gui
|
||||||
./zsh
|
|
||||||
./gpg.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,49 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
with lib; let
|
|
||||||
cfg = config.local.services.gpg;
|
|
||||||
in {
|
|
||||||
options.local.services.gpg = {
|
|
||||||
enable = mkEnableOption "gpg settings";
|
|
||||||
defaultKey = mkOption {
|
|
||||||
type = types.str;
|
|
||||||
description = "fingerprint of default public key to be used in gpg, git, email, etc.";
|
|
||||||
example = "7AA277E604A4173916BBB4E91FFAC35E1798174F";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.gpg = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
default-key = config.local.services.gpg.defaultKey;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services.gpg-agent = {
|
|
||||||
enable = true;
|
|
||||||
enableZshIntegration = true;
|
|
||||||
pinentryPackage = pkgs.pinentry-emacs;
|
|
||||||
};
|
|
||||||
|
|
||||||
accounts.email.accounts = {
|
|
||||||
"fabian@posixlycorrect.com" = {
|
|
||||||
gpg = {
|
|
||||||
encryptByDefault = true;
|
|
||||||
signByDefault = true;
|
|
||||||
key = config.local.services.gpg.defaultKey;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.git = {
|
|
||||||
signing = {
|
|
||||||
key = config.local.services.gpg.defaultKey;
|
|
||||||
signByDefault = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -34,6 +34,35 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.zsh = {
|
||||||
|
enable = true;
|
||||||
|
syntaxHighlighting.enable = true;
|
||||||
|
initExtra = import ./zshrc.nix pkgs;
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
userEmail = "fabian@posixlycorrect.com";
|
||||||
|
userName = "Fabian Montero";
|
||||||
|
#signing = {
|
||||||
|
# key = "7AA277E604A4173916BBB4E91FFAC35E1798174F";
|
||||||
|
# signByDefault = true;
|
||||||
|
#};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.gpg = {
|
||||||
|
enable = true;
|
||||||
|
#settings = {
|
||||||
|
# default-key = "7AA277E604A4173916BBB4E91FFAC35E1798174F";
|
||||||
|
#};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.gpg-agent = {
|
||||||
|
enable = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
pinentryPackage = pkgs.pinentry-emacs;
|
||||||
|
};
|
||||||
|
|
||||||
accounts.email.accounts = {
|
accounts.email.accounts = {
|
||||||
"fabian@posixlycorrect.com" = {
|
"fabian@posixlycorrect.com" = {
|
||||||
address = "fabian@posixlycorrect.com";
|
address = "fabian@posixlycorrect.com";
|
||||||
|
@ -41,6 +70,12 @@ in {
|
||||||
realName = "fabian";
|
realName = "fabian";
|
||||||
primary = true;
|
primary = true;
|
||||||
flavor = "fastmail.com";
|
flavor = "fastmail.com";
|
||||||
|
|
||||||
|
gpg = {
|
||||||
|
encryptByDefault = true;
|
||||||
|
signByDefault = true;
|
||||||
|
key = "7AA277E604A4173916BBB4E91FFAC35E1798174F";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -83,7 +83,7 @@
|
||||||
alias tree='tree -CF'
|
alias tree='tree -CF'
|
||||||
alias lock="betterlockscreen -l"
|
alias lock="betterlockscreen -l"
|
||||||
alias nightmode="${redshift}/bin/redshift -P -O 1000"
|
alias nightmode="${redshift}/bin/redshift -P -O 1000"
|
||||||
alias lightmode="${redshift}/bin/redshift -x="
|
alias lightmode="${redshift}/bin/redshift -P -O 6500"
|
||||||
alias inbox="echo >> $HOME/gtd/inbox"
|
alias inbox="echo >> $HOME/gtd/inbox"
|
||||||
alias nixoide="nix repl '<nixpkgs>'"
|
alias nixoide="nix repl '<nixpkgs>'"
|
||||||
alias vps="ssh -A vps"
|
alias vps="ssh -A vps"
|
|
@ -1,18 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
with lib; let
|
|
||||||
cfg = config.local.services.zsh;
|
|
||||||
in {
|
|
||||||
options.local.services.zsh.enable = mkEnableOption "zsh settings";
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.zsh = {
|
|
||||||
enable = true;
|
|
||||||
syntaxHighlighting.enable = true;
|
|
||||||
initExtra = import ./zshrc.nix pkgs;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -43,14 +43,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
local.services = {
|
|
||||||
zsh.enable = true;
|
|
||||||
gpg = {
|
|
||||||
enalbe = true;
|
|
||||||
defaultKey = "7AA277E604A4173916BBB4E91FFAC35E1798174F";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "21.11"; # No tocar esto
|
stateVersion = "21.11"; # No tocar esto
|
||||||
username = "fabian";
|
username = "fabian";
|
||||||
|
|
Loading…
Reference in a new issue