diff --git a/flake.lock b/flake.lock index d3889ab..4288765 100644 --- a/flake.lock +++ b/flake.lock @@ -87,11 +87,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1717196966, - "narHash": "sha256-yZKhxVIKd2lsbOqYd5iDoUIwsRZFqE87smE2Vzf6Ck0=", + "lastModified": 1717602782, + "narHash": "sha256-pL9jeus5QpX5R+9rsp3hhZ+uplVHscNJh8n8VpqscM0=", "owner": "nixos", "repo": "nixpkgs", - "rev": "57610d2f8f0937f39dbd72251e9614b1561942d8", + "rev": "e8057b67ebf307f01bdcc8fba94d94f75039d1f6", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index a4bf005..890a056 100644 --- a/flake.nix +++ b/flake.nix @@ -33,7 +33,7 @@ modules = [ ./home/home.nix ]; - pkgs = nixpkgs.legacyPackages.${system}.extend(import ./pkgs/default.nix); + pkgs = nixpkgs.legacyPackages.${system}.extend (import ./pkgs/default.nix); extraSpecialArgs = specialArgs; }; in @@ -48,27 +48,28 @@ ########################## # Linux-specific options # ########################## - linuxSystems (system: { - homeConfigurations = { - # First, we currently assume that Linux devices - # only require dotfiles and utilize the username `spotlight`. - # - # For now, this is effectively true, sans a few specific configurations :) - spotlight = homeManager { - system = system; - }; + linuxSystems + (system: { + homeConfigurations = { + # First, we currently assume that Linux devices + # only require dotfiles and utilize the username `spotlight`. + # + # For now, this is effectively true, sans a few specific configurations :) + spotlight = homeManager { + system = system; + }; - # For a special case: with the Steam Deck, we have to assume the user - # is named `deck` due to its immutable system image. - deck = homeManager { - system = system; - specialArgs = { - gpg = true; - username = "deck"; + # For a special case: with the Steam Deck, we have to assume the user + # is named `deck` due to its immutable system image. + deck = homeManager { + system = system; + specialArgs = { + gpg = true; + username = "deck"; + }; }; }; - }; - }) + }) //