Skip to content

Commit 0cc49ab

Browse files
eapolinarioclaude
andcommitted
feat(fusion-vm): add claude-code via sadjow/claude-code-nix flake
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent d835a67 commit 0cc49ab

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

nixos/flake.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
url = "github:nix-community/disko";
1414
inputs.nixpkgs.follows = "nixpkgs";
1515
};
16+
17+
claude-code.url = "github:sadjow/claude-code-nix";
1618
};
1719

1820
outputs = { self, nixpkgs, disko, ... }@inputs:

nixos/hosts/fusion-vm/default.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
{ config, pkgs, lib, ... }:
1+
{ config, pkgs, lib, inputs, ... }:
22
{
33
imports = [
44
./disko.nix
55
# ./hardware-configuration.nix # uncomment after first nixos-anywhere run
66
];
77

8+
nixpkgs.overlays = [ inputs.claude-code.overlays.default ];
9+
810
networking.hostName = "fusion-vm";
911

1012
boot.loader.systemd-boot.enable = true;
@@ -32,6 +34,7 @@
3234
bitwarden-desktop
3335
bitwarden-cli
3436
gnupg
37+
claude-code
3538
wlr-randr
3639
emacs30-pgtk
3740
];

0 commit comments

Comments
 (0)