feat(porgrams): add nix-edit
This commit is contained in:
parent
57f2094c44
commit
888b3246a7
3 changed files with 42 additions and 0 deletions
26
modules/programs/nix-edit/default.nix
Normal file
26
modules/programs/nix-edit/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, config
|
||||
, pkgs
|
||||
, ...
|
||||
}:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.my.programs.nix-edit;
|
||||
in
|
||||
{
|
||||
options.my.programs.nix-edit.enable = mkEnableOption "nix-edit";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages =
|
||||
let
|
||||
nix-edit = pkgs.writeShellApplication {
|
||||
name = "nix-edit";
|
||||
runtimeInputs = with pkgs; [ nix gnugrep ];
|
||||
text = builtins.readFile ./nix-edit.sh;
|
||||
};
|
||||
in
|
||||
[ nix-edit ];
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue