Add git lfs

This commit is contained in:
Torjus Håkestad 2024-05-15 03:44:00 +02:00
parent ee662d342e
commit 24dde4bb55
2 changed files with 8 additions and 1 deletions

View File

@ -1 +1 @@
{ imports = [ ./podman.nix ./fonts.nix ./users.nix ./services.nix ./security.nix ]; }
{ imports = [ ./podman.nix ./fonts.nix ./users.nix ./services.nix ./security.nix ./git.nix ]; }

7
system/git.nix Normal file
View File

@ -0,0 +1,7 @@
{ ... }:
{
programs.git = {
enable = true;
lfs.enable = true;
};
}