nix-software-center icon indicating copy to clipboard operation
nix-software-center copied to clipboard

Update util.rs to remove 1 s

Open tigercoding56 opened this issue 1 year ago • 3 comments

this hopefully temporarily fixes the bug where no-internet connection message is shown when user has internet which one commenter pointed out is probably due to a expired certificate https://github.com/snowfallorg/nix-software-center/issues/75#issuecomment-2480176559 we should really consider just checking if some huge website like google.com is online

tigercoding56 avatar Nov 24 '24 01:11 tigercoding56

ok it works for now Screenshot_20241123_180627

tigercoding56 avatar Nov 24 '24 02:11 tigercoding56

Hi, i didn't want to submit a merge request myself till it was tested, thank you

Had additional issues getting gnome builder to rebuild the package due to ssl lib paths, what did you use to rebuild the pgk?

yonacwy avatar Nov 24 '24 12:11 yonacwy

Hi, i didn't want to submit a merge request myself till it was tested, thank you

Had additional issues getting gnome builder to rebuild the package due to ssl lib paths, what did you use to rebuild the pgk?

{ config, pkgs,lib,  ... }:

let
  nix-software-center = import (pkgs.fetchFromGitHub {
    owner = "tigercoding56";
    repo = "nix-software-center";
    rev="d8c77bcb561dbd06418501ab979dd36108591217";
    sha256="sha256-jpeztgkJultrnwjYkHfGJVl61Vn1gLwSKr9vthc22qU=";
  }) {};
in
{
  imports =
    [ # Include the results of the hardware scan.
      ./hardware-configuration.nix
      ./nix-alien.nix
      #./distroboxc.nix

    ];
  services.blueman.enable = true;  
  hardware.bluetooth.enable = true; # enables support for Bluetooth
  hardware.bluetooth.powerOnBoot 

i just updated the repo to point to google.com (bc my school blocks websites that are not explicitly on whitelist and i did not want to have to deal with that), and i don't feel like testing it right now so that should work (it is the old config i used bevore)

tigercoding56 avatar Dec 16 '24 05:12 tigercoding56