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

55
flake.lock generated
View file

@ -1,26 +1,5 @@
{ {
"nodes": { "nodes": {
"claude-code-nix": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1768271737,
"narHash": "sha256-IE9nsfNUPTksyLzb6ZHqiRPwOIkZ/zXlW0vyCUVhTzk=",
"owner": "sadjow",
"repo": "claude-code-nix",
"rev": "445c54bbb461bb99a1eb9e06248a55da75d9e58d",
"type": "github"
},
"original": {
"owner": "sadjow",
"repo": "claude-code-nix",
"type": "github"
}
},
"crane": { "crane": {
"locked": { "locked": {
"lastModified": 1765145449, "lastModified": 1765145449,
@ -52,24 +31,6 @@
"type": "github" "type": "github"
} }
}, },
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"gitignore": { "gitignore": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -157,7 +118,6 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"claude-code-nix": "claude-code-nix",
"lanzaboote": "lanzaboote", "lanzaboote": "lanzaboote",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
} }
@ -182,21 +142,6 @@
"repo": "rust-overlay", "repo": "rust-overlay",
"type": "github" "type": "github"
} }
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View file

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

View file

@ -16,7 +16,6 @@
shellAliases = { shellAliases = {
ls = "ls --color=auto"; ls = "ls --color=auto";
grep = "grep --color=auto"; grep = "grep --color=auto";
# claude = "$HOME/.claude/local/claude";
}; };
# Prompt configuration # Prompt configuration
@ -81,6 +80,6 @@
# Shell aliases (available in all shells) # Shell aliases (available in all shells)
environment.shellAliases = { environment.shellAliases = {
nrs = ''export GPG_TTY=$(tty) && sudo nixos-rebuild switch && cd /etc/nixos && git add -A && git commit -S -m "Update: $(date +%Y-%m-%d_%H:%M)" || true && git push origin main''; nrs = ''export GPG_TTY=$(tty) && sudo nixos-rebuild switch --flake path:/etc/nixos && cd /etc/nixos && git add -A && git commit -S -m "Update: $(date +%Y-%m-%d_%H:%M)" || true && git push origin main'';
}; };
} }