diff --git a/flake.nix b/flake.nix index f137953..eda1a6e 100644 --- a/flake.nix +++ b/flake.nix @@ -39,10 +39,6 @@ url = "github:jnsahaj/lumen"; inputs.nixpkgs.follows = "nixpkgs"; }; - nono = { - url = "github:lukehinds/nono"; - flake = false; - }; overseer = { url = "github:dmmulroy/overseer"; flake = false; diff --git a/hosts/chidi/default.nix b/hosts/chidi/default.nix index 56347bd..ca20e4e 100644 --- a/hosts/chidi/default.nix +++ b/hosts/chidi/default.nix @@ -33,7 +33,6 @@ ../../profiles/lazygit.nix ../../profiles/lumen.nix ../../profiles/mise.nix - ../../profiles/nono.nix ../../profiles/neovim ../../profiles/opencode.nix ../../profiles/claude-code.nix diff --git a/hosts/jason/default.nix b/hosts/jason/default.nix index cadaa0a..43242f6 100644 --- a/hosts/jason/default.nix +++ b/hosts/jason/default.nix @@ -32,7 +32,6 @@ ../../profiles/lazygit.nix ../../profiles/lumen.nix ../../profiles/mise.nix - ../../profiles/nono.nix ../../profiles/neovim ../../profiles/opencode.nix ../../profiles/claude-code.nix diff --git a/hosts/tahani/default.nix b/hosts/tahani/default.nix index 46a5b14..8c0ee40 100644 --- a/hosts/tahani/default.nix +++ b/hosts/tahani/default.nix @@ -33,7 +33,6 @@ ../../profiles/lazygit.nix ../../profiles/lumen.nix ../../profiles/mise.nix - ../../profiles/nono.nix ../../profiles/neovim ../../profiles/opencode.nix ../../profiles/overseer.nix diff --git a/overlays/nono.nix b/overlays/nono.nix deleted file mode 100644 index 68c7273..0000000 --- a/overlays/nono.nix +++ /dev/null @@ -1,19 +0,0 @@ -{inputs}: final: prev: let - manifest = (prev.lib.importTOML "${inputs.nono}/Cargo.toml").package; -in { - nono = - prev.rustPlatform.buildRustPackage { - pname = manifest.name; - version = manifest.version; - - cargoLock.lockFile = "${inputs.nono}/Cargo.lock"; - - src = inputs.nono; - - nativeBuildInputs = with prev; [pkg-config]; - buildInputs = with prev; [openssl dbus]; - OPENSSL_NO_VENDOR = 1; - - doCheck = false; - }; -} diff --git a/profiles/nono.nix b/profiles/nono.nix deleted file mode 100644 index c8ccac3..0000000 --- a/profiles/nono.nix +++ /dev/null @@ -1,5 +0,0 @@ -{pkgs, ...}: { - home.packages = with pkgs; [ - nono - ]; -}