Skip to content

Commit

Permalink
fix recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
ifd3f committed Jun 14, 2024
1 parent 6a0fce8 commit 4e75b9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions nix/nixos-modules/roles/ejabberd.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ config, pkgs, lib, ... }:
with lib;
let
httpPort = 5443;

Expand Down
2 changes: 1 addition & 1 deletion nix/nixos-modules/roles/laptop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{ config, pkgs, lib, ... }:
let inputs = config.astral.inputs;
in {
imports = [ inputs.self.nixosModules.pc ];
# imports = [ inputs.self.nixosModules.pc ];

environment.systemPackages = with pkgs; [
xorg.xf86videointel
Expand Down
2 changes: 1 addition & 1 deletion nix/outputs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ in {
nixosModules = {
default = self.nixosModules.astral;
astral = import ./nixos-modules/astral inputs;
} // import ./nixos-modules/roles.nix inputs;
} // import ./nixos-modules/roles.nix;

nixosConfigurations = self.lib.machines.nixosConfigurations;
} // flake-utils.lib.eachSystem [
Expand Down

0 comments on commit 4e75b9f

Please sign in to comment.