aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--flake.nix32
-rw-r--r--home/packages/default.nix6
-rw-r--r--nix/mkHomeManagerConfiguration.nix3
-rw-r--r--nix/mkSystem.nix1
4 files changed, 3 insertions, 39 deletions
diff --git a/flake.nix b/flake.nix
index 2017a02..d82a782 100644
--- a/flake.nix
+++ b/flake.nix
@@ -49,38 +49,6 @@
nixpkgs-stable.follows = "nixpkgs";
};
};
-
- gh-ssh-keys = {
- url = "git+https://git.fcuny.net/fcuny/gh-ssh-keys?ref=main";
- inputs = {
- flake-utils.follows = "futils";
- nixpkgs.follows = "nixpkgs";
- };
- };
-
- x509-tools = {
- url = "git+https://git.fcuny.net/fcuny/x509-info?ref=main";
- inputs = {
- flake-utils.follows = "futils";
- nixpkgs.follows = "nixpkgs";
- };
- };
-
- sendsms = {
- url = "git+https://git.fcuny.net/fcuny/sendsms?ref=main";
- inputs = {
- flake-utils.follows = "futils";
- nixpkgs.follows = "nixpkgs";
- };
- };
-
- masked-emails = {
- url = "git+https://git.fcuny.net/fcuny/masked-emails?ref=main";
- inputs = {
- flake-utils.follows = "futils";
- nixpkgs.follows = "nixpkgs";
- };
- };
};
# Output config, or config for NixOS system
diff --git a/home/packages/default.nix b/home/packages/default.nix
index 5ef0333..6a67129 100644
--- a/home/packages/default.nix
+++ b/home/packages/default.nix
@@ -45,9 +45,9 @@ in
tools.seqstat
# tools from external repositories
- x509-info
- gh-ssh-keys
- masked-emails
+ # x509-info
+ # gh-ssh-keys
+ # masked-emails
]
++ cfg.additionalPackages);
}
diff --git a/nix/mkHomeManagerConfiguration.nix b/nix/mkHomeManagerConfiguration.nix
index 9f92cbb..cdd25bd 100644
--- a/nix/mkHomeManagerConfiguration.nix
+++ b/nix/mkHomeManagerConfiguration.nix
@@ -29,9 +29,6 @@ inputs.home-manager.lib.homeManagerConfiguration {
inputs.nur.overlay
inputs.naersk.overlay
inputs.rust.overlays.default
- inputs.gh-ssh-keys.overlay
- inputs.x509-tools.overlay
- inputs.masked-emails.overlay
(final: prev:
{
tools = import "${self}/tools" { pkgs = prev; inherit naersk; };
diff --git a/nix/mkSystem.nix b/nix/mkSystem.nix
index 1cb450f..4debbab 100644
--- a/nix/mkSystem.nix
+++ b/nix/mkSystem.nix
@@ -17,7 +17,6 @@ inputs.nixpkgs.lib.nixosSystem {
overlays = [
inputs.nur.overlay
inputs.rust.overlays.default
- inputs.sendsms.overlay
(final: prev:
{
tools = import "${self}/tools" { pkgs = prev; inherit naersk; };