this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

hm yes

+166 -126
+3 -3
modules/cachix/iohk.nix
··· 1 1 { 2 2 nix.settings = { 3 - trusted-public-keys = [ "hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=" ]; 4 - substituters = [ "https://hydra.iohk.io" ]; 3 + trusted-public-keys = ["hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="]; 4 + substituters = ["https://hydra.iohk.io"]; 5 5 }; 6 - } 6 + }
-122
pkgs-set/overlays/fractal-next.nix
··· 1 - let 2 - fractal-next = { 3 - lib, 4 - stdenv, 5 - fetchFromGitLab, 6 - nix-update-script, 7 - meson, 8 - cmake, 9 - ninja, 10 - gettext, 11 - python3, 12 - rustPlatform, 13 - pkg-config, 14 - glib, 15 - libhandy, 16 - libsecret, 17 - libshumate, 18 - gtk4, 19 - gtksourceview5, 20 - libadwaita, 21 - llvmPackages, 22 - glibc, 23 - wayland, 24 - pipewire, 25 - dbus, 26 - openssl, 27 - sqlite, 28 - gst_all_1, 29 - cairo, 30 - gdk-pixbuf, 31 - gspell, 32 - wrapGAppsHook, 33 - desktop-file-utils, 34 - appstream-glib, 35 - }: 36 - stdenv.mkDerivation rec { 37 - pname = "fractal-next"; 38 - version = "1206d4ed12059a298b5d918fd0a77dca034f7084"; 39 - 40 - src = fetchFromGitLab { 41 - domain = "gitlab.gnome.org"; 42 - owner = "GNOME"; 43 - repo = "fractal"; 44 - rev = "1206d4ed12059a298b5d918fd0a77dca034f7084"; 45 - sha256 = "sha256-ioMgVj85BKvsIjBbTAHFN6k5B/H86GLMTgAXK/5ji/k="; 46 - }; 47 - 48 - cargoDeps = rustPlatform.fetchCargoTarball { 49 - inherit src; 50 - name = "${pname}-${version}"; 51 - hash = "sha256-gbTljLIYAanXm1D/tNBGNMlaDatXgZDeSY5pA8s5gog="; 52 - }; 53 - 54 - nativeBuildInputs = [ 55 - appstream-glib # for appstream-util 56 - gettext 57 - meson 58 - ninja 59 - pkg-config 60 - python3 61 - rustPlatform.rust.cargo 62 - rustPlatform.cargoSetupHook 63 - rustPlatform.rust.rustc 64 - wrapGAppsHook 65 - desktop-file-utils 66 - glib 67 - cmake 68 - ]; 69 - 70 - buildInputs = [ 71 - cairo 72 - dbus 73 - gdk-pixbuf 74 - glib 75 - gspell 76 - gst_all_1.gst-editing-services 77 - gst_all_1.gst-plugins-bad 78 - gst_all_1.gst-plugins-base 79 - (gst_all_1.gst-plugins-good.override { 80 - gtkSupport = true; 81 - }) 82 - gst_all_1.gstreamer 83 - gst_all_1.gst-devtools 84 - gtk4 85 - gtksourceview5 86 - libadwaita 87 - wayland 88 - pipewire 89 - libhandy 90 - openssl 91 - libsecret 92 - libshumate 93 - ]; 94 - 95 - # libspa-sys requires this for bindgen 96 - LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; 97 - # <spa-0.2/spa/utils/defs.h> included by libspa-sys requires <stdbool.h> 98 - BINDGEN_EXTRA_CLANG_ARGS = "-I${llvmPackages.libclang.lib}/lib/clang/${lib.getVersion llvmPackages.clang}/include -I${glibc.dev}/include"; 99 - 100 - doCheck = false; 101 - 102 - postPatch = '' 103 - patchShebangs build-aux/meson_post_install.py 104 - ''; 105 - 106 - passthru = { 107 - updateScript = nix-update-script { 108 - attrPath = pname; 109 - }; 110 - }; 111 - 112 - meta = with lib; { 113 - description = "Matrix group messaging app"; 114 - homepage = "https://gitlab.gnome.org/GNOME/fractal"; 115 - license = licenses.gpl3; 116 - maintainers = teams.gnome.members ++ (with maintainers; [dtzWill genofire]); 117 - }; 118 - }; 119 - in 120 - _: prev: { 121 - fractal-next = prev.callPackage fractal-next {}; 122 - }
+1
pkgs-set/pkgs-to-export.nix
··· 5 5 "fractal-next" 6 6 "gamescope" 7 7 "gaudible" 8 + "abaddon" 8 9 ] 9 10 pkgs 10 11 )
+42
pkgs-set/pkgs/abaddon.nix
··· 1 + { 2 + stdenv, 3 + fetchFromGitHub, 4 + gtkmm3, 5 + sqlite, 6 + openssl, 7 + curlWithGnuTls, 8 + nlohmann_json, 9 + pkg-config, 10 + cmake, 11 + ... 12 + }: 13 + stdenv.mkDerivation rec { 14 + pname = "abaddon"; 15 + version = "ccf5afbba959068f34897b75afcd25c65c96d79c"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "uowuo"; 19 + repo = pname; 20 + rev = version; 21 + sha256 = "sha256-PKEly2yBM6UKNi/XEEUvbpTmvNSNJM1lUVMovCHgi50="; 22 + fetchSubmodules = true; 23 + }; 24 + 25 + nativeBuildInputs = [ 26 + pkg-config 27 + cmake 28 + ]; 29 + 30 + buildInputs = [ 31 + gtkmm3.dev 32 + curlWithGnuTls.dev 33 + sqlite.dev 34 + openssl 35 + nlohmann_json 36 + ]; 37 + 38 + configurePhase = "mkdir build && cd build && cmake .."; 39 + installPhase = "mkdir -p $out/bin && mv abaddon $out/bin/abaddon"; 40 + 41 + doCheck = false; 42 + }
+118
pkgs-set/pkgs/fractal-next.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitLab, 5 + nix-update-script, 6 + meson, 7 + cmake, 8 + ninja, 9 + gettext, 10 + python3, 11 + rustPlatform, 12 + pkg-config, 13 + glib, 14 + libhandy, 15 + libsecret, 16 + libshumate, 17 + gtk4, 18 + gtksourceview5, 19 + libadwaita, 20 + llvmPackages, 21 + glibc, 22 + wayland, 23 + pipewire, 24 + dbus, 25 + openssl, 26 + sqlite, 27 + gst_all_1, 28 + cairo, 29 + gdk-pixbuf, 30 + gspell, 31 + wrapGAppsHook, 32 + desktop-file-utils, 33 + appstream-glib, 34 + ... 35 + }: 36 + stdenv.mkDerivation rec { 37 + pname = "fractal-next"; 38 + version = "1206d4ed12059a298b5d918fd0a77dca034f7084"; 39 + 40 + src = fetchFromGitLab { 41 + domain = "gitlab.gnome.org"; 42 + owner = "GNOME"; 43 + repo = "fractal"; 44 + rev = "1206d4ed12059a298b5d918fd0a77dca034f7084"; 45 + sha256 = "sha256-ioMgVj85BKvsIjBbTAHFN6k5B/H86GLMTgAXK/5ji/k="; 46 + }; 47 + 48 + cargoDeps = rustPlatform.fetchCargoTarball { 49 + inherit src; 50 + name = "${pname}-${version}"; 51 + hash = "sha256-gbTljLIYAanXm1D/tNBGNMlaDatXgZDeSY5pA8s5gog="; 52 + }; 53 + 54 + nativeBuildInputs = [ 55 + appstream-glib # for appstream-util 56 + gettext 57 + meson 58 + ninja 59 + pkg-config 60 + python3 61 + rustPlatform.rust.cargo 62 + rustPlatform.cargoSetupHook 63 + rustPlatform.rust.rustc 64 + wrapGAppsHook 65 + desktop-file-utils 66 + glib 67 + cmake 68 + ]; 69 + 70 + buildInputs = [ 71 + cairo 72 + dbus 73 + gdk-pixbuf 74 + glib 75 + gspell 76 + gst_all_1.gst-editing-services 77 + gst_all_1.gst-plugins-bad 78 + gst_all_1.gst-plugins-base 79 + (gst_all_1.gst-plugins-good.override { 80 + gtkSupport = true; 81 + }) 82 + gst_all_1.gstreamer 83 + gst_all_1.gst-devtools 84 + gtk4 85 + gtksourceview5 86 + libadwaita 87 + wayland 88 + pipewire 89 + libhandy 90 + openssl 91 + libsecret 92 + libshumate 93 + ]; 94 + 95 + # libspa-sys requires this for bindgen 96 + LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; 97 + # <spa-0.2/spa/utils/defs.h> included by libspa-sys requires <stdbool.h> 98 + BINDGEN_EXTRA_CLANG_ARGS = "-I${llvmPackages.libclang.lib}/lib/clang/${lib.getVersion llvmPackages.clang}/include -I${glibc.dev}/include"; 99 + 100 + doCheck = false; 101 + 102 + postPatch = '' 103 + patchShebangs build-aux/meson_post_install.py 104 + ''; 105 + 106 + passthru = { 107 + updateScript = nix-update-script { 108 + attrPath = pname; 109 + }; 110 + }; 111 + 112 + meta = with lib; { 113 + description = "Matrix group messaging app"; 114 + homepage = "https://gitlab.gnome.org/GNOME/fractal"; 115 + license = licenses.gpl3; 116 + maintainers = teams.gnome.members ++ (with maintainers; [dtzWill genofire]); 117 + }; 118 + }
+1 -1
users/modules/starship/default.nix
··· 2 2 programs.starship = { 3 3 enable = true; 4 4 settings = { 5 - format = "$shell$shlvl$nix_shell@ $directory$character"; 5 + format = "$shell$shlvl@ $directory$character"; 6 6 add_newline = false; 7 7 character = { 8 8 success_symbol = "[>](bold green)";
+1
users/patriot/default.nix
··· 254 254 bindkey "$terminfo[kLFT5]" backward-word 255 255 # makes completions pog 256 256 zstyle ':completion:*' menu select 257 + ${pkgBin "any-nix-shell"} zsh --info-right | source /dev/stdin 257 258 ''; 258 259 loginExtra = '' 259 260 if [[ "$(tty)" == "/dev/tty1" ]]; then