Skip to content

Commit

Permalink
flake.lock: update
Browse files Browse the repository at this point in the history
Lots of breaking changes and workarounds...
  • Loading branch information
khaneliman committed Jul 12, 2024
1 parent 80093eb commit 7221d50
Show file tree
Hide file tree
Showing 7 changed files with 76 additions and 52 deletions.
94 changes: 47 additions & 47 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion modules/home/programs/graphical/apps/mpv/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ in
scripts = lib.optionals pkgs.stdenv.isLinux [ pkgs.mpvScripts.mpris ];
};

services.plex-mpv-shim.enable = pkgs.stdenv.isLinux;
# FIXME: broken nixpkgs
# services.plex-mpv-shim.enable = pkgs.stdenv.isLinux;
};
}
3 changes: 2 additions & 1 deletion modules/home/suites/desktop/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ in
bitwarden
bleachbit
dropbox
dupeguru
# TODO: remove override after https://github.com/NixOS/nixpkgs/pull/325740 is in unstable
(dupeguru.override { python3Packages = pkgs.python311Packages; })
filelight
fontpreview
gparted
Expand Down
3 changes: 2 additions & 1 deletion modules/home/suites/development/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ in
]
++ lib.optionals cfg.sqlEnable [
dbeaver-bin
mysql-workbench
# TODO: remove override after https://github.com/NixOS/nixpkgs/pull/325851 in unstable
(mysql-workbench.override { python3 = pkgs.python311; })
];

shellAliases = {
Expand Down
3 changes: 2 additions & 1 deletion modules/nixos/suites/art/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ in

config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
blender
# FIXME: broken nixpkgs
# blender
gimp
inkscape-with-extensions
];
Expand Down
3 changes: 2 additions & 1 deletion modules/nixos/suites/common/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ in

security = {
auditd = enabled;
clamav = enabled;
# FIXME: broken nixpkgs
# clamav = enabled;
gpg = enabled;
usbguard = enabled;
};
Expand Down
19 changes: 19 additions & 0 deletions overlays/bitwarden/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
_: _final: prev: {
# TODO: remove after https://github.com/NixOS/nixpkgs/pull/325840 hits unstable
bitwarden-desktop = prev.bitwarden-desktop.overrideAttrs (_oldAttrs: rec {
cargoRoot = "apps/desktop/desktop_native";

checkPhase = ''
runHook preCheck
pushd ${cargoRoot}
export HOME=$(mktemp -d)
export -f cargoCheckHook runHook _eval _callImplicitHook _logHook
export cargoCheckType=release
dbus-run-session \
--config-file=${prev.dbus}/share/dbus-1/session.conf \
-- bash -e -c cargoCheckHook
popd
runHook postCheck
'';
});
}

0 comments on commit 7221d50

Please sign in to comment.