Bruno BELANYI
a5febc40e4
Now that my configurations also set `nixpkgs` in `NIX_PATH`, there's isn't a need for this to be defined anymore.
16 lines
268 B
Nix
16 lines
268 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.my.home.comma;
|
|
in
|
|
{
|
|
options.my.home.comma = with lib; {
|
|
enable = my.mkDisableOption "comma configuration";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
ambroisie.comma
|
|
];
|
|
};
|
|
}
|