| hi, I am trying to deploy custom nixos image is created with nixos-generators for digitalocean. the machine boots, but /etc/nixos/configuration.nix looks like this
{ config, lib, pkgs, modulesPath, ... }:
{
imports = lib.optional (builtins.pathExists ./do-userdata.nix) ./do-userdata.nix ++ [
(modulesPath + "/virtualisation/digital-ocean-config.nix")
];
even if I add environment.systemPackages = with pkgs; [ cowsay ]; and rebuild, it doesn't seem to install the required package. Any idea what I should look into?
|