Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modules: fix uninstallUnmanaged typo. #74

Merged
merged 1 commit into from
Jul 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/home-manager.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }@args:
let
cfg = lib.warnIf (! isNull config.services.flatpak.uninstallUnmanagedPackages)
"uninstallUnmanagedPackages is deprecated since nix-flatpak 0.4.0 and will be removed in 1.0.0. Use uninstallUnamanged instead."
"uninstallUnmanagedPackages is deprecated since nix-flatpak 0.4.0 and will be removed in 1.0.0. Use uninstallUnmanaged instead."
config.services.flatpak;
installation = "user";
in
Expand Down
2 changes: 1 addition & 1 deletion modules/nixos.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }:
let
cfg = lib.warnIf (! isNull config.services.flatpak.uninstallUnmanagedPackages)
"uninstallUnmanagedPackages is deprecated since nix-flatpak 0.4.0 and will be removed in 1.0.0. Use uninstallUnamanged instead."
"uninstallUnmanagedPackages is deprecated since nix-flatpak 0.4.0 and will be removed in 1.0.0. Use uninstallUnmanaged instead."
config.services.flatpak;
installation = "system";
in
Expand Down
2 changes: 1 addition & 1 deletion modules/options.nix
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ in
type = lib.types.nullOr (lib.types.bool);
default = null;
description = lib.mdDoc ''
uninstallUnmanagedPackages is deprecated. Use uninstallUnamanged instead.'';
uninstallUnmanagedPackages is deprecated. Use uninstallUnmanaged instead.'';
};

uninstallUnmanaged = mkOption {
Expand Down
Loading