keybase encryption

This commit is contained in:
Noah Masur 2022-01-22 19:16:37 -05:00
parent c14702c9ee
commit 1424f6c983
2 changed files with 16 additions and 2 deletions

View File

@ -10,6 +10,7 @@
]; ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nix.extraOptions = "experimental-features = nix-command flakes";
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
@ -169,12 +170,17 @@
steam steam
]; ];
environment.variables = { NIX_SKIP_KEYBASE_CHECKS = "1"; };
location = { location = {
latitude = 40.0; latitude = 40.0;
longitude = 74.0; longitude = 74.0;
}; };
services.redshift = { enable = true; }; # Reduce blue light at night
services.redshift.enable = true;
services.keybase.enable = true;
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
# started in user sessions. # started in user sessions.

View File

@ -26,16 +26,24 @@ in {
# Utilities # Utilities
unzip unzip
gcc # for tree-sitter gcc # for tree-sitter
tmux starship
rsync rsync
fzf
ripgrep ripgrep
bat bat
fd fd
exa exa
sd sd
zoxide
jq jq
tealdeer tealdeer
gh gh
direnv
# Encryption
keybase
keybase-gui
gnupg
pass pass
]; ];