diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 22:52:20 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 23:00:44 -0700 |
| commit | 2f17e369400b9c895b3554008ab3efbc76255428 (patch) | |
| tree | 172c910e17f14bb8d0d7306fe527c2c79140df64 /hosts/copenhagen/home | |
| parent | 10c984caf7067656990e5966b4626314f225755f (diff) | |
roles: home: migrate old home module to roles
Diffstat (limited to 'hosts/copenhagen/home')
| -rw-r--r-- | hosts/copenhagen/home/c.nix | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/hosts/copenhagen/home/c.nix b/hosts/copenhagen/home/c.nix index 0d1d5e9..b374712 100644 --- a/hosts/copenhagen/home/c.nix +++ b/hosts/copenhagen/home/c.nix @@ -16,24 +16,12 @@ ]; }; - programs = { - git = { + home.roles = { + dev = { enable = true; - - userName = "Caroline Larimore"; - userEmail = "caroline@larimo.re"; - - signing = { - key = "DE64538967CA0C68"; - signByDefault = true; - }; - - ignores = [ - "*~" - "*.swp" - ]; + key = "DE64538967CA0C68"; }; - }; + } home.packages = with pkgs; [ cloc |