Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
|
151865ebb0 | ||
|
bb7f4ba5cc |
2 changed files with 21 additions and 0 deletions
|
@ -7,7 +7,11 @@
|
||||||
# include local machine/environment config
|
# include local machine/environment config
|
||||||
./local.nix
|
./local.nix
|
||||||
./programs
|
./programs
|
||||||
|
(fetchTarball "https://github.com/nix-community/nixos-vscode-server/tarball/master")
|
||||||
];
|
];
|
||||||
|
|
||||||
|
services.vscode-server.enable = true;
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
nix.settings.experimental-features = ["nix-command" "flakes" ];
|
nix.settings.experimental-features = ["nix-command" "flakes" ];
|
||||||
|
|
||||||
|
@ -25,7 +29,10 @@
|
||||||
mosh
|
mosh
|
||||||
traceroute
|
traceroute
|
||||||
fastfetch
|
fastfetch
|
||||||
|
gnupg
|
||||||
age
|
age
|
||||||
|
sops
|
||||||
|
hollywood
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.shellAliases = {
|
environment.shellAliases = {
|
||||||
|
@ -58,6 +65,13 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.gnupg.agent = {
|
||||||
|
enable = true;
|
||||||
|
enableSSHSupport = true;
|
||||||
|
};
|
||||||
|
# only for smartcards or yubikey
|
||||||
|
#services.pcscd.enable = true;
|
||||||
|
|
||||||
services.tailscale.enable = true;
|
services.tailscale.enable = true;
|
||||||
services.tailscale.useRoutingFeatures = "client";
|
services.tailscale.useRoutingFeatures = "client";
|
||||||
|
|
||||||
|
|
7
dotfiles/git/config
Normal file
7
dotfiles/git/config
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
[init]
|
||||||
|
defaultBranch = main
|
||||||
|
[user]
|
||||||
|
name = dracoling
|
||||||
|
email = dracoling@consolidatedawesome.com
|
||||||
|
[includeIf "gitdir:~/work/"]
|
||||||
|
path = ~/work/.gitconfig
|
Loading…
Add table
Reference in a new issue