mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
Work in progress stuff for a new node. Moved sound forwarding from the VM back to pulse.
This commit is contained in:
parent
f785c945f0
commit
fa4f112505
9 changed files with 99 additions and 14 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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; }) ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue