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