1

unbug bugs

This commit is contained in:
2022-07-13 20:21:32 +02:00
parent ff5094e2ee
commit c5c9e319f7

View File

@ -39,17 +39,6 @@
emacs = inputs.emacs-overlay.overlay;
};
homemanager = home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs =
true; # Use systems pkgs, disables nixpkgs.* options in home.nix
home-manager.useUserPackages =
true; # Enable installing packages through users.christoph.packages
home-manager.users.christoph = import ./home/home.nix;
# Make our overlays available in home.nix
home-manager.extraSpecialArgs = { inherit inputs; };
};
# The rec expression turns a basic set into a set where self-referencing is possible.
# It is a shorthand for recursive and allows to use the values defined in this set from its own scope.
in rec {
@ -77,7 +66,17 @@
}
# HomeManager
homemanager
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs =
true; # Use systems pkgs, disables nixpkgs.* options in home.nix
home-manager.useUserPackages =
true; # Enable installing packages through users.christoph.packages
home-manager.users.christoph = import ./home/home.nix;
# Make our overlays available in home.nix
home-manager.extraSpecialArgs = { inherit inputs; };
}
];
# Make our inputs available to the configuration.nix (for importing modules)
@ -101,7 +100,17 @@
}
# HomeManager
homemanager
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs =
true; # Use systems pkgs, disables nixpkgs.* options in home.nix
home-manager.useUserPackages =
true; # Enable installing packages through users.christoph.packages
home-manager.users.christoph = import ./home/home.nix;
# Make our overlays available in home.nix
home-manager.extraSpecialArgs = { inherit inputs; };
}
];
# Make our inputs available to the configuration.nix (for importing modules)