From 3d8c0e8d73cb75b5dfbe43f0d173a73fff3ecac3 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 17 Aug 2021 23:43:01 -0600 Subject: [PATCH] [NixOS] Bump home-manager --- nixos/home-manager | 2 +- nixos/home-manager.nix | 19 ++++++++----------- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/nixos/home-manager b/nixos/home-manager index ad5aea1a..ec260995 160000 --- a/nixos/home-manager +++ b/nixos/home-manager @@ -1 +1 @@ -Subproject commit ad5aea1a32bc2e6343da207a7969492d501ccfc6 +Subproject commit ec260995e25a38be212b4ba807de2b763fee996d diff --git a/nixos/home-manager.nix b/nixos/home-manager.nix index a33f5774..54288744 100644 --- a/nixos/home-manager.nix +++ b/nixos/home-manager.nix @@ -71,23 +71,20 @@ services.git-sync = { enable = true; - repositories = [ - { - name = "config"; + repositories = { + config = { path = "/home/imalison/config"; uri = "git@github.com:IvanMalison/config.git"; - } - { - name = "org"; + }; + org = { path = "/home/imalison/org"; uri = "git@github.com:IvanMalison/org.git"; - } - { - name = "password-store"; + }; + password-store = { path = "/home/imalison/.password-store"; uri = "git@github.com:IvanMalison/.password-store.git"; - } - ]; + }; + }; }; systemd.user.services.setxkbmap = {