This commit is contained in:
Daylin Morgan 2023-04-26 12:41:33 -05:00
parent 27da154691
commit 81afc219d4
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

View file

@ -32,12 +32,18 @@
"0 2 * * * make -C /home/daylin/git update-soft-serve"
];
};
networking.hostName = "jeran"; # Define your hostname.
time.timeZone = "America/Chicago";
programs.zsh.enable = true;
programs.nix-ld.enable = true;
virtualisation.docker.enable = true;
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
stdenv.cc.cc
curl # for choosenim
];
environment.systemPackages = with pkgs; [
zsh
@ -47,6 +53,9 @@
less
gnumake
gcc
gnupg
curl
git
@ -72,6 +81,5 @@
nodejs
go
rustup
nim
];
}