Skip to content

Commit

Permalink
Merge pull request #9 from gmodena/rename-options-file
Browse files Browse the repository at this point in the history
modules: rename default.nix to options.nix
  • Loading branch information
gmodena committed Nov 9, 2023
2 parents 66e6211 + 6e073a2 commit df3ea99
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/home-manager.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let
in
{

options.services.flatpak = import ./default.nix { inherit cfg lib pkgs; };
options.services.flatpak = import ./options.nix { inherit cfg lib pkgs; };

config = lib.mkIf osConfig.services.flatpak.enable {
systemd.user.services."flatpak-managed-install" = {
Expand Down
2 changes: 1 addition & 1 deletion modules/nixos.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ let
installation = "system";
in
{
options.services.flatpak = import ./default.nix { inherit cfg lib pkgs; };
options.services.flatpak = import ./options.nix { inherit cfg lib pkgs; };

config = lib.mkIf config.services.flatpak.enable {
systemd.services."flatpak-managed-install" = {
Expand Down
File renamed without changes.

0 comments on commit df3ea99

Please sign in to comment.