mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 20:40:24 +01:00
23 lines
698 B
Nix
23 lines
698 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# ssh-agent is used to pull my private secrets repo from github when deploying my nixos config.
|
|
programs.ssh.startAgent = true;
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
# $ nix search wget
|
|
environment.systemPackages = with pkgs; [
|
|
neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
|
git
|
|
gnumake
|
|
wget
|
|
just # a command runner(replacement of gnumake in some cases)
|
|
curl
|
|
nix-output-monitor
|
|
];
|
|
networking = {
|
|
# configures the network interface(include wireless) via `nmcli` & `nmtui`
|
|
networkmanager.enable = true;
|
|
};
|
|
system.stateVersion = "25.11";
|
|
}
|