Files
nixos-template-base/applications/graphical/developpement-rust.nix

18 lines
393 B
Nix
Raw Normal View History

2016-07-10 22:06:26 +02:00
{ config, lib, pkgs, ... }:
2016-07-10 22:06:26 +02:00
let
2016-08-12 12:46:36 +02:00
inherit (lib) mkIf mkMerge mkThenElse;
2016-07-10 22:06:26 +02:00
cfg = config.r6d.config-generator;
computers = config.r6d.computers;
profiles = config.r6d.profiles;
annuaire = config.r6d.machines;
currentMachine = annuaire."${config.networking.hostName}";
2016-08-08 22:58:30 +02:00
in
mkIf (cfg.developpement-rust && cfg.graphical) {
2016-08-12 12:46:36 +02:00
# Paquets
environment.systemPackages = with pkgs; [
];
}