aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-09-10 08:38:49 +0200
committerSoispha <soispha@vhack.eu>2023-09-10 08:38:49 +0200
commitcb1326562923091915e1eb36d53faa9a268a19f8 (patch)
treef11ff2979c5acdeb8f2b3f04c2cf222078364435
parentFix(treewide): Provide `snap-synced-forked` as overlay and thus as pkg (diff)
downloadnixos-config-cb1326562923091915e1eb36d53faa9a268a19f8.zip
Fix(treewide): Purge `snap-sync` in favour of `snap-sync-forked`
-rw-r--r--flake.lock17
-rw-r--r--flake.nix6
-rw-r--r--flake/default.nix2
-rw-r--r--hm/default.nix2
-rw-r--r--hm/soispha/pkgs/default.nix3
5 files changed, 0 insertions, 30 deletions
diff --git a/flake.lock b/flake.lock
index 27a077eb..cbbc1d9c 100644
--- a/flake.lock
+++ b/flake.lock
@@ -806,7 +806,6 @@
"rust-overlay": "rust-overlay",
"serverphone": "serverphone",
"shell_library": "shell_library",
- "snap-sync": "snap-sync",
"strip_js_comments": "strip_js_comments",
"systems": "systems",
"templates": "templates",
@@ -903,22 +902,6 @@
"url": "https://codeberg.org/soispha/shell_library.git"
}
},
- "snap-sync": {
- "flake": false,
- "locked": {
- "lastModified": 1653097113,
- "narHash": "sha256-jKoGBh8dtS9XZkUuZZcLDqreMUdyVZ16z1+Xc63TC4Q=",
- "owner": "qubidt",
- "repo": "snap-sync",
- "rev": "84e2ad00800cf43d0952b61add7e77797eced82d",
- "type": "github"
- },
- "original": {
- "owner": "qubidt",
- "repo": "snap-sync",
- "type": "github"
- }
- },
"strip_js_comments": {
"inputs": {
"crane": [
diff --git a/flake.nix b/flake.nix
index dbc66476..890928fe 100644
--- a/flake.nix
+++ b/flake.nix
@@ -273,10 +273,6 @@
url = "github:arkenfox/user.js";
flake = false;
};
- snap-sync = {
- url = "github:qubidt/snap-sync";
- flake = false;
- };
};
outputs = {
@@ -297,7 +293,6 @@
# external dependencies
neovim_config,
user_js,
- snap-sync,
templates,
# my binaries
video_pause,
@@ -345,7 +340,6 @@
neovim_config
user_js
- snap-sync
templates
# my binaries
diff --git a/flake/default.nix b/flake/default.nix
index f7efdb6c..c98b8bd3 100644
--- a/flake/default.nix
+++ b/flake/default.nix
@@ -19,7 +19,6 @@
# external dependencies
neovim_config,
user_js,
- snap-sync,
templates,
# my binaries
video_pause,
@@ -55,7 +54,6 @@
user_js
neovim_config
- snap-sync
# modules
impermanence
diff --git a/hm/default.nix b/hm/default.nix
index 015cdeb2..0d3e702b 100644
--- a/hm/default.nix
+++ b/hm/default.nix
@@ -16,7 +16,6 @@
# external deps
user_js,
neovim_config,
- snap-sync,
# modules
impermanence,
nixNeovim,
@@ -48,7 +47,6 @@
user_js
neovim_config
- snap-sync
# modules
impermanence
diff --git a/hm/soispha/pkgs/default.nix b/hm/soispha/pkgs/default.nix
index 83744400..f6a4efa0 100644
--- a/hm/soispha/pkgs/default.nix
+++ b/hm/soispha/pkgs/default.nix
@@ -2,13 +2,11 @@
pkgs,
sysLib,
grades,
- snap-sync,
system,
flake_update,
...
}:
with pkgs; let
- snap-sync-pkgs = pkgs.writeShellScriptBin "snap-sync" (builtins.readFile "${snap-sync}/bin/snap-sync");
shell-scripts = (import ./scripts.nix) {inherit pkgs sysLib;};
Gui = {
@@ -139,7 +137,6 @@ with pkgs; let
in {
home.packages =
[
- snap-sync-pkgs
flake_update.outputs.packages.${system}.default
grades.outputs.packages.${system}.default
]