20 lines
325 B
Nix
20 lines
325 B
Nix
|
|
{
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
let
|
||
|
|
nvf = import (builtins.fetchTarball {
|
||
|
|
url = "https://github.com/notashelf/nvf/archive/v0.7.tar.gz";
|
||
|
|
# Optionally, you can add 'sha256' for verification and caching
|
||
|
|
# sha256 = "<sha256>";
|
||
|
|
});
|
||
|
|
in{
|
||
|
|
imports = [
|
||
|
|
nvf.nixosModules.nvf
|
||
|
|
];
|
||
|
|
|
||
|
|
programs.nvf = {
|
||
|
|
enable = true;
|
||
|
|
};
|
||
|
|
}
|