mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
9 lines
164 B
Nix
9 lines
164 B
Nix
{ config, lib, pkgs, ... }: let
|
|
inherit (lib.modules) mkIf;
|
|
in {
|
|
config = mkIf config.role.development {
|
|
home.packages = [
|
|
pkgs.deadnix
|
|
];
|
|
};
|
|
}
|