mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
Fixes nixos base module calling home-manager
This commit is contained in:
parent
d5528d06bd
commit
3976578cd5
1 changed files with 3 additions and 5 deletions
|
@ -4,7 +4,7 @@
|
|||
...
|
||||
}: {
|
||||
flake = {
|
||||
nixosModules.base = {config, ...}: {
|
||||
nixosModules.base = {...}: {
|
||||
imports = [
|
||||
../../nixos/profiles/common.nix
|
||||
../../nixos/profiles/linux/base.nix
|
||||
|
@ -13,11 +13,9 @@
|
|||
|
||||
nixpkgs.overlays = builtins.attrValues self.overlays;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
home-manager.users.willem = self.homeManagerModules.user-willem-linux;
|
||||
};
|
||||
|
||||
nixosModules.willem-home = {config, ...}: {
|
||||
nixosModules.willem-home = {...}: {
|
||||
imports = [
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
self.nixosModules.home-manager-integration
|
||||
|
@ -25,7 +23,7 @@
|
|||
home-manager.users.willem = self.homeManagerModules.user-willem-linux;
|
||||
};
|
||||
|
||||
darwinModules.base = {config, ...}: {
|
||||
darwinModules.base = {...}: {
|
||||
imports = [
|
||||
../../nixos/profiles/common.nix
|
||||
inputs.home-manager.darwinModules.home-manager
|
||||
|
|
Loading…
Add table
Reference in a new issue