Skip to content

Commit

Permalink
💎 (flake.nix) Refactor to xremap and system settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Comamoca committed Jan 28, 2025
1 parent 51a801a commit 429b525
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,10 @@
};

Home = inputs.home-manager.lib.homeManagerConfiguration rec {
pkgs = import inputs.nixpkgs {
system = "x86_64-linux";
system = "x86_64-linux";

pkgs = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
};
extraSpecialArgs = {
Expand All @@ -159,7 +161,7 @@
(final: prev: {
# nak = inputs.nak.packages.x86_64-linux.default;
ghostty = inputs.ghostty.packages.x86_64-linux.default;
xremap = inputs.xremap.packages.${"x86_64-linux"}.default;
xremap = inputs.xremap.packages.${system}.default;
})
];
}
Expand Down

0 comments on commit 429b525

Please sign in to comment.