diff options
author | sefidel <contact@sefidel.net> | 2022-01-02 00:05:25 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-01-02 00:05:25 +0900 |
commit | bf632250b267e175fb2b87303bb6e35c671d0a92 (patch) | |
tree | 0488ecfacc415f7a83f399ee5ba024909b363580 /lib/mk_home.nix | |
parent | 475444a7ab3ee287ac86ce5f7bb7c1c25525c232 (diff) | |
download | nixrc-bf632250b267e175fb2b87303bb6e35c671d0a92.tar.gz nixrc-bf632250b267e175fb2b87303bb6e35c671d0a92.zip |
repo: reformat using nixpkgs-fmt
Diffstat (limited to 'lib/mk_home.nix')
-rw-r--r-- | lib/mk_home.nix | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/mk_home.nix b/lib/mk_home.nix index e352f5f..7abe42a 100644 --- a/lib/mk_home.nix +++ b/lib/mk_home.nix @@ -5,16 +5,16 @@ let args = inputs; entrypoint = "${self}/home/configurations/${username}@${hostname}.nix"; in - home-manager.lib.homeManagerConfiguration { - inherit username system; - homeDirectory = "/home/${username}"; - stateVersion = version; - pkgs = nixpkgs.legacyPackages.${system}; +home-manager.lib.homeManagerConfiguration { + inherit username system; + homeDirectory = "/home/${username}"; + stateVersion = version; + pkgs = nixpkgs.legacyPackages.${system}; - configuration = { lib, ... }: { - _module = { inherit args; }; - imports = [ - entrypoint - ] ++ __attrValues self.homeModules; - }; - } + configuration = { lib, ... }: { + _module = { inherit args; }; + imports = [ + entrypoint + ] ++ __attrValues self.homeModules; + }; +} |