2020-05-26 16:43:19 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
2020-05-26 17:27:54 +02:00
|
|
|
# Everything in here needs to work on linux or darwin
|
|
|
|
|
2020-05-26 16:43:19 +02:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../modules/shell.nix
|
|
|
|
../modules/development.nix
|
|
|
|
../modules/emacs.nix
|
|
|
|
../modules/vim.nix
|
|
|
|
../modules/tarsnap.nix
|
2020-06-03 22:29:05 +02:00
|
|
|
../modules/twitter.nix
|
2020-05-26 17:27:54 +02:00
|
|
|
../modules/lib/cloneRepo.nix
|
2020-05-26 16:43:19 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
2020-05-26 17:27:54 +02:00
|
|
|
|
2020-05-26 16:43:19 +02:00
|
|
|
programs.password-store.enable = true;
|
|
|
|
|
2020-05-26 17:27:54 +02:00
|
|
|
grfn.impure.clonedRepos.passwordStore = {
|
2020-05-26 16:43:19 +02:00
|
|
|
github = "glittershark/pass";
|
|
|
|
path = ".local/share/password-store";
|
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
2020-05-26 17:27:54 +02:00
|
|
|
# System utilities
|
|
|
|
bat
|
2020-05-26 16:43:19 +02:00
|
|
|
htop
|
|
|
|
killall
|
|
|
|
bind
|
|
|
|
zip unzip
|
|
|
|
tree
|
|
|
|
ncat
|
2020-06-03 22:29:22 +02:00
|
|
|
bc
|
2020-09-30 00:01:33 +02:00
|
|
|
pv
|
2020-05-26 16:43:19 +02:00
|
|
|
|
2020-05-26 17:27:54 +02:00
|
|
|
# Security
|
2020-05-26 16:43:19 +02:00
|
|
|
gnupg
|
|
|
|
keybase
|
|
|
|
openssl
|
2020-10-13 05:30:47 +02:00
|
|
|
yubikey-manager
|
|
|
|
yubikey-manager-qt
|
2020-05-26 16:43:19 +02:00
|
|
|
|
|
|
|
# Nix things
|
|
|
|
nixfmt
|
|
|
|
nix-prefetch-github
|
|
|
|
nix-review
|
|
|
|
cachix
|
|
|
|
];
|
2020-09-30 05:42:59 +02:00
|
|
|
|
|
|
|
programs.ssh = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
matchBlocks = {
|
2020-10-05 16:43:19 +02:00
|
|
|
"home" = {
|
|
|
|
host = "home.gws.fyi";
|
|
|
|
forwardAgent = true;
|
|
|
|
};
|
|
|
|
|
2020-09-30 05:42:59 +02:00
|
|
|
"dobharchu" = {
|
|
|
|
host = "dobharchu";
|
|
|
|
hostname = "172.16.0.4";
|
|
|
|
forwardAgent = true;
|
|
|
|
user = "griffin";
|
|
|
|
};
|
|
|
|
|
|
|
|
"mugwump" = {
|
|
|
|
host = "mugwump";
|
|
|
|
hostname = "172.16.0.5";
|
|
|
|
forwardAgent = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2020-05-26 16:43:19 +02:00
|
|
|
}
|