feat(git): enable LFS
This commit is contained in:
parent
60d9c07eae
commit
8e65aaaf60
3 changed files with 14 additions and 2 deletions
12
nixos/modules/programs/git/default.nix
Normal file
12
nixos/modules/programs/git/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
cfg = config.sisyphus.programs.git;
|
||||
in {
|
||||
options.sisyphus.programs.git.enable = lib.mkEnableOption "Git";
|
||||
|
||||
config.programs.git = lib.mkIf cfg.enable {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue