claude-code-nix deletion

This commit is contained in:
Sergei Poljanski 2026-01-13 09:28:01 +02:00
commit e40b653858
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
3 changed files with 3 additions and 68 deletions

View file

@ -1,5 +1,5 @@
{
description = "NixOS configuration with latest Claude Code & Lanzaboot";
description = "NixOS configuration with Lanzaboote";
inputs = {
lanzaboote = {
@ -7,24 +7,15 @@
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
claude-code-nix = {
url = "github:sadjow/claude-code-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, claude-code-nix, ... }@inputs: {
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations.meow = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
inputs.lanzaboote.nixosModules.lanzaboote
./configuration.nix
({ pkgs, inputs, ... }: {
environment.systemPackages = [
inputs.claude-code-nix.packages.${pkgs.stdenv.hostPlatform.system}.default
];
})
];
};
};