Compare commits

..

1 Commits

Author SHA1 Message Date
ee4bd53cf9 aerospace: assign apps to workspaces and monitors 2026-02-02 14:03:14 +01:00
7 changed files with 0 additions and 62 deletions

17
flake.lock generated
View File

@@ -548,22 +548,6 @@
"type": "github" "type": "github"
} }
}, },
"nono": {
"flake": false,
"locked": {
"lastModified": 1770047555,
"narHash": "sha256-BL1lBZYs6bsjk/+g+Zc2lUjErlvgYYJQqYEKLUjvtVU=",
"owner": "lukehinds",
"repo": "nono",
"rev": "8d382fbc0b21ad06d255a97000d876c15b5dea09",
"type": "github"
},
"original": {
"owner": "lukehinds",
"repo": "nono",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"colmena": "colmena", "colmena": "colmena",
@@ -580,7 +564,6 @@
"nix-homebrew": "nix-homebrew", "nix-homebrew": "nix-homebrew",
"nixpkgs": "nixpkgs_3", "nixpkgs": "nixpkgs_3",
"nixvim": "nixvim", "nixvim": "nixvim",
"nono": "nono",
"sops-nix": "sops-nix", "sops-nix": "sops-nix",
"zjstatus": "zjstatus" "zjstatus": "zjstatus"
} }

View File

@@ -45,10 +45,6 @@
flake = false; flake = false;
}; };
jj-starship.url = "github:dmmulroy/jj-starship"; jj-starship.url = "github:dmmulroy/jj-starship";
nono = {
url = "github:lukehinds/nono";
flake = false;
};
}; };
outputs = inputs @ {flake-parts, ...}: outputs = inputs @ {flake-parts, ...}:

View File

@@ -36,7 +36,6 @@
../../profiles/lazygit.nix ../../profiles/lazygit.nix
../../profiles/lumen.nix ../../profiles/lumen.nix
../../profiles/mise.nix ../../profiles/mise.nix
../../profiles/nono.nix
../../profiles/neovim ../../profiles/neovim
../../profiles/opencode.nix ../../profiles/opencode.nix
../../profiles/ripgrep.nix ../../profiles/ripgrep.nix

View File

@@ -35,7 +35,6 @@
../../profiles/lazygit.nix ../../profiles/lazygit.nix
../../profiles/lumen.nix ../../profiles/lumen.nix
../../profiles/mise.nix ../../profiles/mise.nix
../../profiles/nono.nix
../../profiles/neovim ../../profiles/neovim
../../profiles/opencode.nix ../../profiles/opencode.nix
../../profiles/ripgrep.nix ../../profiles/ripgrep.nix

View File

@@ -36,7 +36,6 @@
../../profiles/lazygit.nix ../../profiles/lazygit.nix
../../profiles/lumen.nix ../../profiles/lumen.nix
../../profiles/mise.nix ../../profiles/mise.nix
../../profiles/nono.nix
../../profiles/neovim ../../profiles/neovim
../../profiles/opencode.nix ../../profiles/opencode.nix
../../profiles/ripgrep.nix ../../profiles/ripgrep.nix

View File

@@ -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;
};
}

View File

@@ -1,19 +0,0 @@
{pkgs, ...}: {
home.packages = with pkgs; [
nono
];
xdg.configFile."nono/profiles/opencode.toml".text = ''
[meta]
name = "opencode"
version = "1.0.0"
description = "OpenCode AI agent"
[filesystem]
allow = ["$WORKDIR"]
read = ["$XDG_CONFIG_HOME/opencode"]
[network]
block = false
'';
}