This commit is contained in:
2023-07-26 09:06:51 +02:00
parent 61fce84a65
commit 5418ca30f0
3 changed files with 53 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = [
pkgs.neovim
pkgs.iterm2
];
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
nix.package = pkgs.nix;
}