Work in progress stuff for a new node. Moved sound forwarding from the VM back to pulse.

This commit is contained in:
kat witch 2021-02-04 13:58:20 +00:00 committed by kat
parent f785c945f0
commit fa4f112505
9 changed files with 99 additions and 14 deletions

View file

@ -25,8 +25,11 @@ in {
nix.gc.automatic = lib.mkDefault true;
nix.gc.options = lib.mkDefault "--delete-older-than 1w";
nix.trustedUsers = [ "root" "@wheel" ];
environment.variables.EDITOR = "kak";
environment.variables = {
EDITOR = "kak";
TERMINFO_DIRS = "${pkgs.kitty.terminfo.outPath}/share/terminfo";
};
services.openssh.enable = true;
services.openssh.ports = lib.mkDefault [ 62954 ];
services.openssh.passwordAuthentication = false;
@ -49,12 +52,12 @@ in {
htop
ripgrep
git
kitty.terminfo
mprime
wget
rsync
pv
progress
ffmpeg-full
bc
zstd
file

View file

@ -1,10 +0,0 @@
let
pbbNixfiles = fetchGit {
url = "https://git.petabyte.dev/petabyteboy/nixfiles";
rev = "4b0275db7842fda45dcc007d87b6274c4e63382b";
};
in {
imports = [ "${pbbNixfiles}/modules" ];
nixpkgs.overlays =
[ (self: super: import "${pbbNixfiles}/pkgs" { nixpkgs = super.path; }) ];
}