Update flake.lock
This commit is contained in:
parent
260e898a58
commit
bd372d9346
5 changed files with 7 additions and 8 deletions
|
@ -5,7 +5,7 @@
|
|||
}:
|
||||
with lib; let
|
||||
cfg = config.eboskma.programs.alacritty;
|
||||
importYAML = name: yamlFile: (lib.importJSON ((pkgs.runCommandNoCC name { } ''
|
||||
importYAML = name: yamlFile: (lib.importJSON ((pkgs.runCommand name { } ''
|
||||
mkdir -p $out
|
||||
${pkgs.yaml2json}/bin/yaml2json < ${yamlFile} | ${pkgs.jq}/bin/jq -a '.' > $out/tmp.json
|
||||
'').outPath
|
||||
|
|
|
@ -68,12 +68,12 @@ in
|
|||
dogdns
|
||||
file
|
||||
hexyl
|
||||
ht-rust
|
||||
jq
|
||||
lm_sensors
|
||||
nix-template
|
||||
nvd
|
||||
usbutils
|
||||
xh
|
||||
zip
|
||||
];
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ in
|
|||
papirus-icon-theme
|
||||
];
|
||||
services.udev.packages = with pkgs; [
|
||||
gnome3.gnome-settings-daemon
|
||||
gnome.gnome-settings-daemon
|
||||
];
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ in
|
|||
};
|
||||
|
||||
nix = {
|
||||
package = pkgs.nixFlakes;
|
||||
package = pkgs.nixVersions.stable;
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
|
|
|
@ -2,15 +2,14 @@
|
|||
with pkgs;
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rofi-wayland-unwrapped";
|
||||
version = "1.7.3";
|
||||
version = "1.7.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lbonn";
|
||||
repo = "rofi";
|
||||
rev = "${version}+wayland1";
|
||||
fetchSubmodules = true;
|
||||
# sha256 = "1h6lh4lrkxzs6iy2rzn5g71dnz6qck4j8cxpgy1ja179vrnj1sf7";
|
||||
sha256 = "qvIxWxiQj42VgScSsrF1Yf6ifgEbZes0flNbbwc3O8I=";
|
||||
sha256 = "ddKLV7NvqgTQl5YlAEyBK0oalcJsLASK4z3qArQPUDQ=";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
|
@ -19,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||
sed -i 's/~root/~nobody/g' test/helper-expand.c
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkgconfig ];
|
||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
buildInputs = with pkgs; [
|
||||
libxkbcommon
|
||||
pango
|
||||
|
|
Loading…
Reference in a new issue