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