diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-04-07 18:10:51 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-04-07 18:10:51 +0200 |
commit | beced224e98ff8522d2a31276e076a0b71f8fd58 (patch) | |
tree | c5e7958962a870194c8847a33761be3fc3bccaa1 | |
parent | Dotfiles: Tmux: Set window titles (diff) | |
download | nixos-config-beced224e98ff8522d2a31276e076a0b71f8fd58.tar.gz nixos-config-beced224e98ff8522d2a31276e076a0b71f8fd58.tar.bz2 nixos-config-beced224e98ff8522d2a31276e076a0b71f8fd58.zip |
Overlays: Base: Dont use comma fork
-rw-r--r-- | hosts/configuration.nix | 1 | ||||
-rw-r--r-- | hosts/home.nix | 1 | ||||
-rw-r--r-- | overlays/base/default.nix | 13 |
3 files changed, 1 insertions, 14 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 3f9d376..6723965 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -83,6 +83,7 @@ XKB_DEFAULT_LAYOUT = "us"; NIXPKGS_ALLOW_UNFREE = "1"; + NIX_INDEX_DATABASE = "/etc/nix-index/"; }; environment.sessionVariables = rec { diff --git a/hosts/home.nix b/hosts/home.nix index 0ce87bc..f11caf7 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -323,7 +323,6 @@ q = "exit"; c = "clear"; open = "xdg-open"; - "," = ", --database '/etc/nix-index'"; extract = '' () { if [ -f $1 ] ; then diff --git a/overlays/base/default.nix b/overlays/base/default.nix index 6ca1db5..779c822 100644 --- a/overlays/base/default.nix +++ b/overlays/base/default.nix @@ -64,19 +64,6 @@ final: prev: ]; }); - comma = prev.comma.overrideAttrs (old: rec { - src = prev.fetchFromGitHub { - owner = "baitinq"; - repo = "comma"; - rev = "1eeccb3c60323a292ddb44647f603d3a54005350"; - sha256 = "sha256-yT9eZSSSlAty9QcUtxVG4J3rWi5rxQMHAxbSGe9FQi0="; - }; - cargoDeps = old.cargoDeps.overrideAttrs (prev.lib.const { - inherit src; - outputHash = "sha256-sEkCrO5ZEzkhrxf44IgJb3NkYvZH9fqVZ5GtXSLwu3c="; - }); - }); - mpv = prev.wrapMpv prev.mpv-unwrapped { scripts = [ prev.mpvScripts.mpris ]; }; |