nix-rehash/nix-services/environment.nix
Jaka Hudoklin 237e857126 Add 'nix-services/' from commit 'bbc5bf5bcf4466c7acd3ef978ae77daa8cae9bac'
git-subtree-dir: nix-services
git-subtree-mainline: 6f91df3199
git-subtree-split: bbc5bf5bcf
2014-03-14 16:43:29 +00:00

24 lines
493 B
Nix

{ config, pkgs, ... }:
with pkgs.lib;
{
options = {
environment.systemPackages = mkOption {
default = [];
description = "Packages to be put in the system profile.";
};
environment.umask = mkOption {
default = "002";
type = with types; string;
};
# HACK HACK
system.activationScripts.etc = mkOption {}; # Ignore
system.build.etc = mkOption {}; # Ignore
};
config = {
environment.systemPackages = with pkgs; [ coreutils ];
};
}