Skip to content

Commit

Permalink
Merge remote branch master into haskell-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sternenseemann committed Oct 5, 2024
2 parents 804e7c5 + 42c8e2a commit f7bd593
Show file tree
Hide file tree
Showing 64 changed files with 1,723 additions and 1,400 deletions.
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18498,6 +18498,11 @@
githubId = 56157634;
name = "Ruben Hönle";
};
rubikcubed = {
github = "rubikcubed";
githubId = 91467402;
name = "rubikcubed";
};
ruby0b = {
github = "ruby0b";
githubId = 106119328;
Expand Down
4 changes: 0 additions & 4 deletions nixos/modules/services/networking/syncthing.nix
Original file line number Diff line number Diff line change
Expand Up @@ -714,10 +714,6 @@ in {
ExecStart = updateConfig;
};
};

syncthing-resume = {
wantedBy = [ "suspend.target" ];
};
};
};
}
46 changes: 23 additions & 23 deletions nixos/modules/services/x11/desktop-managers/xfce.nix
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ in
};

config = mkIf cfg.enable {
environment.systemPackages = utils.removePackagesByName (with pkgs.xfce // pkgs; [
environment.systemPackages = utils.removePackagesByName (with pkgs; [
glib # for gsettings
gtk3.out # gtk-update-icon-cache

gnome-themes-extra
adwaita-icon-theme
hicolor-icon-theme
tango-icon-theme
xfce4-icon-theme
xfce.xfce4-icon-theme

desktop-file-utils
shared-mime-info # for update-mime-database
Expand All @@ -99,37 +99,37 @@ in
# Needed by Xfce's xinitrc script
xdg-user-dirs # Update user dirs as described in https://freedesktop.org/wiki/Software/xdg-user-dirs/

exo
garcon
libxfce4ui

mousepad
parole
ristretto
xfce4-appfinder
xfce4-notifyd
xfce4-screenshooter
xfce4-session
xfce4-settings
xfce4-taskmanager
xfce4-terminal
xfce.exo
xfce.garcon
xfce.libxfce4ui

xfce.mousepad
xfce.parole
xfce.ristretto
xfce.xfce4-appfinder
xfce.xfce4-notifyd
xfce.xfce4-screenshooter
xfce.xfce4-session
xfce.xfce4-settings
xfce.xfce4-taskmanager
xfce.xfce4-terminal
] # TODO: NetworkManager doesn't belong here
++ optional config.networking.networkmanager.enable networkmanagerapplet
++ optional config.powerManagement.enable xfce4-power-manager
++ optional config.powerManagement.enable xfce.xfce4-power-manager
++ optionals (config.hardware.pulseaudio.enable || config.services.pipewire.pulse.enable) [
pavucontrol
# volume up/down keys support:
# xfce4-pulseaudio-plugin includes all the functionalities of xfce4-volumed-pulse
# but can only be used with xfce4-panel, so for no-desktop usage we still include
# xfce4-volumed-pulse
(if cfg.noDesktop then xfce4-volumed-pulse else xfce4-pulseaudio-plugin)
(if cfg.noDesktop then xfce.xfce4-volumed-pulse else xfce.xfce4-pulseaudio-plugin)
] ++ optionals cfg.enableXfwm [
xfwm4
xfwm4-themes
xfce.xfwm4
xfce.xfwm4-themes
] ++ optionals (!cfg.noDesktop) [
xfce4-panel
xfdesktop
] ++ optional cfg.enableScreensaver xfce4-screensaver) excludePackages;
xfce.xfce4-panel
xfce.xfdesktop
] ++ optional cfg.enableScreensaver xfce.xfce4-screensaver) excludePackages;

programs.gnupg.agent.pinentryPackage = mkDefault pkgs.pinentry-gtk2;
programs.xfconf.enable = true;
Expand Down
144 changes: 142 additions & 2 deletions pkgs/applications/editors/vim/plugins/avante-nvim/Cargo.lock

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

7 changes: 4 additions & 3 deletions pkgs/applications/editors/vim/plugins/avante-nvim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
}:

let
version = "2024-09-15";
version = "2024-09-30";

src = fetchFromGitHub {
owner = "yetone";
repo = "avante.nvim";
rev = "f9520c4fdfed08e9cc609d6cd319b358e4ea33a5";
hash = "sha256-8zTDGPnhNI2rQA0uJc8gQRj4JCyg+IkO/D3oHYy4f9U=";
rev = "0705234991d03170a72582085dc508600a03a779";
hash = "sha256-tAigYqS3ZAtZJp7RaarbXrDxrjiYu2wjNHq6GP/BMfk=";
};

meta = with lib; {
Expand Down Expand Up @@ -65,6 +65,7 @@ vimUtils.buildVimPlugin {
in
''
mkdir -p $out/build
ln -s ${avante-nvim-lib}/lib/libavante_repo_map${ext} $out/build/avante_repo_map${ext}
ln -s ${avante-nvim-lib}/lib/libavante_templates${ext} $out/build/avante_templates${ext}
ln -s ${avante-nvim-lib}/lib/libavante_tokenizers${ext} $out/build/avante_tokenizers${ext}
'';
Expand Down
1 change: 1 addition & 0 deletions pkgs/applications/editors/vim/plugins/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ in
dependencies = with self; [
dressing-nvim
nui-nvim
nvim-treesitter
plenary-nvim
];
};
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/graphics/tev/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

stdenv.mkDerivation rec {
pname = "tev";
version = "1.27";
version = "1.28";

src = fetchFromGitHub {
owner = "Tom94";
repo = pname;
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-+qCRHP0AbYOQBAE4zK2cmWPHZGWjjxC3DZPNm8sgBzs=";
hash = "sha256-bgum8UIv0hTcIacjQsL7nc/2AbhjW5Zhq+LFkIWmDu8=";
};

nativeBuildInputs = [ cmake wrapGAppsHook3 ];
Expand Down
6 changes: 3 additions & 3 deletions pkgs/applications/networking/cluster/linkerd/edge.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(callPackage ./generic.nix { }) {
channel = "edge";
version = "24.9.2";
sha256 = "0bac5pwh741z7ly8abz92mydrhps2rlp4nkf3a4yxm7gj25gbqb1";
vendorHash = "sha256-zKKgMcuHowU3Sft8QX0VJF+zXCVRyNC10k8nXwzTfYs=";
version = "24.9.3";
sha256 = "1vm6f8abain3zjs3jymr62p7lk475av38pljczgb13fgnn2w6qii";
vendorHash = "sha256-w7TchPXGQQSWcCVf4BMvh5U8qnkctgJAl0sHL6ml/8Y=";
}
4 changes: 2 additions & 2 deletions pkgs/applications/networking/xpipe/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ let
}.${system} or throwSystem;

hash = {
x86_64-linux = "sha256-l7uu101UcY5AGMh6BzMvXvPMw1tlaX6grus9eL9Kxf8=";
x86_64-linux = "sha256-0Cdu1ntG8ZPHbLOIFvVFO6Dj8ZBHl4Rb+MM46luRKj4=";
}.${system} or throwSystem;

displayname = "XPipe";

in stdenvNoCC.mkDerivation rec {
pname = "xpipe";
version = "11.3";
version = "12.0";

src = fetchzip {
url = "https://github.com/xpipe-io/xpipe/releases/download/${version}/xpipe-portable-linux-${arch}.tar.gz";
Expand Down
Loading

0 comments on commit f7bd593

Please sign in to comment.