nix-rehash/nix-services/environment.nix

27 lines
585 B
Nix
Raw Permalink Normal View History

2014-02-17 03:31:11 +04:00
{ 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
environment.etc = mkOption {}; # Ignore
environment.sessionVariables = mkOption {}; # Ignore
2014-02-17 03:31:11 +04:00
};
config = {
2014-08-15 10:09:54 +04:00
environment.systemPackages = with pkgs; [ ];
2014-02-17 03:31:11 +04:00
};
}