Compare commits

..

No commits in common. "b9af43bec26143d66a68975b784138de48a7c5ab" and "f80ae292baeab8e504368af9a543abb61f553c6a" have entirely different histories.

3 changed files with 9 additions and 9 deletions

View File

@ -16,8 +16,8 @@ let
pkgs.fetchFromGitHub { pkgs.fetchFromGitHub {
owner = "nix-community"; owner = "nix-community";
repo = "nixvim"; repo = "nixvim";
rev = "e680b367c726e2ae37d541328fe81f8daaf49a6c"; rev = "master";
sha256 = "sha256-fYEf0IgsNJp/hcb+C3FKtJvVabPDQs64hdL0izNBwXc="; sha256 = "sha256-xPf3jjDBDA9oMVnWU5DJ8gINCq2EPiupvF/4rD/0eEI=";
} }
); );
@ -26,8 +26,8 @@ let
pkgs.fetchFromGitHub { pkgs.fetchFromGitHub {
owner = "danth"; owner = "danth";
repo = "stylix"; repo = "stylix";
rev = "5f912cecb4e1c5c794316c4b79b9b5d57d43e100"; rev = "master";
sha256 = "sha256-SX1R/WlHEIf9BPT4YBnlVyXRyWNlzYMtKpwXnT9+DPM="; sha256 = "sha256-8uTKUHkaU980J5kRnLYrdwmjZYB88eBGUk1oVgIUHFE=";
} }
); );

View File

@ -22,8 +22,8 @@ in
nixpkgs.config.packageOverrides = pkgs: { nixpkgs.config.packageOverrides = pkgs: {
# TODO: Pin the version # TODO: Pin the version
nur = import (builtins.fetchTarball { nur = import (builtins.fetchTarball {
url = "https://github.com/nix-community/NUR/archive/f6b1d11161a18420ae699f3202f6cf113f509e8a.tar.gz"; url = "https://github.com/nix-community/NUR/archive/master.tar.gz";
sha256 = "1yj78q8dgvx94mdhd9dy9p7iwxmfl6rx8h0sypfp2x5wzb1sr2g6"; sha256 = "0jjfvr325imrwg9ic8xha5y38jcp1s0z4pzwhvi0570aigzibbz4";
}) { inherit pkgs; }; }) { inherit pkgs; };
}; };

View File

@ -24,9 +24,9 @@ in
]; ];
modules.desktop.reloadScript = '' modules.desktop.reloadScript = ''
# if ${pkgs.procps}/bin/pgrep waybar; then if ${pkgs.procps}/bin/pgrep waybar; then
# ${pkgs.procps}/bin/pkill waybar ${pkgs.procps}/bin/pkill waybar
# fi fi
${pkgs.waybar}/bin/waybar & ${pkgs.waybar}/bin/waybar &
''; '';