aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-01-02 00:05:25 +0900
committersefidel <contact@sefidel.net>2022-01-02 00:05:25 +0900
commitbf632250b267e175fb2b87303bb6e35c671d0a92 (patch)
tree0488ecfacc415f7a83f399ee5ba024909b363580 /lib
parent475444a7ab3ee287ac86ce5f7bb7c1c25525c232 (diff)
downloadnixrc-bf632250b267e175fb2b87303bb6e35c671d0a92.zip
repo: reformat using nixpkgs-fmt
Diffstat (limited to 'lib')
-rw-r--r--lib/mk_home.nix24
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;
+ };
+}