mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +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 = {
|
flake = {
|
||||||
nixosModules.base = {config, ...}: {
|
nixosModules.base = {...}: {
|
||||||
imports = [
|
imports = [
|
||||||
../../nixos/profiles/common.nix
|
../../nixos/profiles/common.nix
|
||||||
../../nixos/profiles/linux/base.nix
|
../../nixos/profiles/linux/base.nix
|
||||||
|
@ -13,11 +13,9 @@
|
||||||
|
|
||||||
nixpkgs.overlays = builtins.attrValues self.overlays;
|
nixpkgs.overlays = builtins.attrValues self.overlays;
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
home-manager.users.willem = self.homeManagerModules.user-willem-linux;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosModules.willem-home = {config, ...}: {
|
nixosModules.willem-home = {...}: {
|
||||||
imports = [
|
imports = [
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
self.nixosModules.home-manager-integration
|
self.nixosModules.home-manager-integration
|
||||||
|
@ -25,7 +23,7 @@
|
||||||
home-manager.users.willem = self.homeManagerModules.user-willem-linux;
|
home-manager.users.willem = self.homeManagerModules.user-willem-linux;
|
||||||
};
|
};
|
||||||
|
|
||||||
darwinModules.base = {config, ...}: {
|
darwinModules.base = {...}: {
|
||||||
imports = [
|
imports = [
|
||||||
../../nixos/profiles/common.nix
|
../../nixos/profiles/common.nix
|
||||||
inputs.home-manager.darwinModules.home-manager
|
inputs.home-manager.darwinModules.home-manager
|
||||||
|
|
Loading…
Add table
Reference in a new issue