Compare commits
11 commits
d184d54b07
...
4489dc9d09
Author | SHA1 | Date | |
---|---|---|---|
4489dc9d09 | |||
5f36ae60e5 | |||
cdc31f6d52 | |||
4f712fea76 | |||
4741fd7209 | |||
b2e9ecabb4 | |||
cdb28e84ab | |||
a5e23fd301 | |||
5967cefc5e | |||
95c6383196 | |||
7c7597fe2d |
6 changed files with 76 additions and 3 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
|||
use flake . --no-pure-eval
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
.devenv
|
||||
.direnv
|
|
@ -52,9 +52,11 @@
|
|||
}
|
||||
);
|
||||
|
||||
# Base dev shell
|
||||
devenv.shells.default = {
|
||||
imports = [ "${self}/shells/base.nix" ];
|
||||
imports = [
|
||||
"${self}/shells/base.nix"
|
||||
"${self}/shells/nix.nix"
|
||||
];
|
||||
};
|
||||
|
||||
formatter = pkgs.nixfmt-rfc-style;
|
||||
|
|
22
home/programs/ssh.nix
Normal file
22
home/programs/ssh.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
|
||||
extraConfig = {
|
||||
identityFile = "%r@%h";
|
||||
};
|
||||
|
||||
# Equivalent of ~/.ssh/config
|
||||
matchBlocks = {
|
||||
"tty.marleycentre" = {
|
||||
hostname = "admin.punkfairie.net";
|
||||
};
|
||||
|
||||
"tty.marleynet" = {
|
||||
hostname = "10.69.69.2";
|
||||
port = 222;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,4 +1,42 @@
|
|||
{ ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
packages = with pkgs; [
|
||||
nix-direnv
|
||||
gnupg
|
||||
git
|
||||
bitwarden-cli
|
||||
];
|
||||
|
||||
scripts.download_gpg_key.exec = # bash
|
||||
''
|
||||
if ! bw login --check; then
|
||||
echo "Please run `bw login`"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
bw sync && \
|
||||
bw get attachment private.key --itemid 335ce92f-974a-44d4-bc1c-b226005203f3 --output private.key && \
|
||||
echo "Please run `set_gpg_tty && import_gpg_key`"
|
||||
'';
|
||||
|
||||
scripts.set_gpg_tty.exec = # bash
|
||||
''
|
||||
export GPG_TTY="$(tty)"
|
||||
'';
|
||||
|
||||
scripts.import_gpg_key.exec = # bash
|
||||
''
|
||||
exec gpg --import private.key
|
||||
'';
|
||||
|
||||
scripts.gpg_no_pinentry.exec = # bash
|
||||
''
|
||||
pkill gpg-agent
|
||||
gpg-agent --pinentry-program=/usr/bin/pinentry-curses --daemon
|
||||
'';
|
||||
|
||||
scripts.git_allow_push.exec = # bash
|
||||
''
|
||||
git config http.version HTTP/1.1
|
||||
'';
|
||||
}
|
||||
|
|
8
shells/nix.nix
Normal file
8
shells/nix.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
languages.nix.enable = true;
|
||||
|
||||
packages = with pkgs; [
|
||||
nixfmt-rfc-style
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue