add desktop platform
This commit is contained in:
parent
a598918c63
commit
f07257ab6d
28 changed files with 1604 additions and 0 deletions
54
home/platforms/fabian@posixlycorrect/cli.nix
Normal file
54
home/platforms/fabian@posixlycorrect/cli.nix
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; {
|
||||
programs = {
|
||||
## talvez esto debería moverse a base
|
||||
zsh = {
|
||||
enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
initExtra = import ./zshrc.nix pkgs;
|
||||
};
|
||||
git = {
|
||||
enable = true;
|
||||
userEmail = "fabian@posixlycorrect.com";
|
||||
userName = "Fabian Montero";
|
||||
signing = {
|
||||
key = "7AA277E604A4173916BBB4E91FFAC35E1798174F";
|
||||
signByDefault = true;
|
||||
};
|
||||
};
|
||||
gpg = {
|
||||
enable = true;
|
||||
settings = {
|
||||
default-key = "7AA277E604A4173916BBB4E91FFAC35E1798174F";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
pinentryPackage = pkgs.pinentry-emacs;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
calc
|
||||
file
|
||||
gcc
|
||||
htop
|
||||
killall
|
||||
man-pages
|
||||
man-pages-posix
|
||||
neovim
|
||||
rar
|
||||
tree
|
||||
units
|
||||
unzip
|
||||
usbutils
|
||||
zip
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue