removed out dated systemd-manager tooling

This commit is contained in:
2025-10-28 14:31:44 -05:00
parent 00cd7b353b
commit 07543ca2bd
3 changed files with 7 additions and 48 deletions

View File

@@ -103,12 +103,12 @@ in
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(callPackage ./modules/systemd-manager_sovran_systems.nix {})
git git
wget wget
fish fish
htop htop
btop btop
gnomeExtensions.systemd-manager
gnomeExtensions.dash-to-dock gnomeExtensions.dash-to-dock
gnomeExtensions.vitals gnomeExtensions.vitals
gnomeExtensions.pop-shell gnomeExtensions.pop-shell
@@ -372,8 +372,8 @@ backup /etc/nix-bitcoin-secrets/ localhost/
####### Open ports in the firewall ####### ####### Open ports in the firewall #######
networking.firewall.allowedTCPPorts = [ 80 443 5349 8448 3050 3051 ]; networking.firewall.allowedTCPPorts = [ 80 443 5349 8448 3051 ];
networking.firewall.allowedUDPPorts = [ 80 443 5349 8448 3050 3051 ]; networking.firewall.allowedUDPPorts = [ 80 443 5349 8448 3051 ];
networking.firewall.allowedUDPPortRanges = [ networking.firewall.allowedUDPPortRanges = [
{ from=49152; to=65535; } # TURN relay { from=49152; to=65535; } # TURN relay

View File

@@ -1,5 +1,5 @@
{ {
description = "The Ultimate Sovran_SystemsOS Configuration for the Sovran Pro from Sovran Systems"; description = "The Ultimate Sovran_SystemsOS Configuration from Sovran Systems";
inputs = { inputs = {
@@ -62,11 +62,11 @@
]; ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
btc-clients.packages.x86_64-linux.bisq btc-clients.packages.x86_64-linux.bisq
btc-clients.packages.x86_64-linux.bisq2 btc-clients.packages.x86_64-linux.bisq2
btc-clients.packages.x86_64-linux.sparrow btc-clients.packages.x86_64-linux.sparrow
]; ];
}; };

View File

@@ -1,41 +0,0 @@
{ lib, stdenv, fetchzip, buildPackages }:
stdenv.mkDerivation rec {
pname = "systemd-manager";
version = "18";
src = fetchzip {
url = "https://github.com/hardpixel/systemd-manager/releases/download/v${version}/systemd-manager-v${version}.zip";
hash = "sha256-Kd8ZxZ1f6aR1vThrWStsjk8cHrjo2KCYQgpg1em/n2k=";
stripRoot = false;
};
passthru = {
extensionUuid = "systemd-manager@hardpixel.eu";
extensionPortalSlug = "systemd-manager";
};
nativeBuildInputs = [ buildPackages.glib ];
buildPhase = ''
runHook preBuild
if [ -d schemas ]; then
glib-compile-schemas --strict schemas
fi
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/share/gnome-shell/extensions
cp -r -T . $out/share/gnome-shell/extensions/${passthru.extensionUuid}
runHook postInstall
'';
meta = with lib; {
description = "GNOME Shell extension to manage systemd services";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ];
homepage = "https://github.com/hardpixel/systemd-manager";
};
}