Nix hm #1

Merged
LarssonMartin1998 merged 106 commits from nix-hm into main 2025-02-25 14:13:05 +00:00
Showing only changes of commit 97012c034c - Show all commits

View file

@ -43,7 +43,12 @@
}: }:
builder { builder {
inherit system; inherit system;
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
};
};
modules = [ modules = [
{ {
nix.settings.experimental-features = "nix-command flakes"; nix.settings.experimental-features = "nix-command flakes";
@ -61,7 +66,12 @@
extraModules ? [ ], extraModules ? [ ],
}: }:
home-manager.lib.homeManagerConfiguration { home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
};
};
modules = [ modules = [
./nix/pkgs/home.nix ./nix/pkgs/home.nix
./nix/local_home.nix ./nix/local_home.nix