feat(thrall): Use git-sync on org

This commit is contained in:
Alexander Kobjolke 2024-03-29 00:15:57 +01:00
parent 88878e82b1
commit 5a37f8c449
2 changed files with 8 additions and 1 deletions

View file

@ -75,8 +75,8 @@
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.alex = import ./home/alex/cli.nix;
}
{ home-manager.users.alex = ./hosts/thrall/alex.nix; }
];
};

7
hosts/thrall/alex.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
imports = [ ../../home/alex/cli.nix ../../home/alex/services/git-sync ];
config.my.git-sync.enable = true;
}