Claude Code

This commit is contained in:
Joe Frikker
2026-02-24 20:49:03 -05:00
parent 78de9847a9
commit 7980b447fa
3 changed files with 85 additions and 37 deletions

View File

@@ -3,9 +3,9 @@
inputs = {
# Specify the source of Home Manager and Nixpkgs.
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
nixpkgs.url = "github:nixos/nixpkgs/master";
home-manager = {
url = "github:nix-community/home-manager/release-25.11";
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
kube = {
@@ -37,7 +37,7 @@
};
in {
homeConfigurations.shibumi =
let pkgs = nixpkgs.legacyPackages.aarch64-darwin;
let pkgs = import nixpkgs { system = "aarch64-darwin"; config.allowUnfree = true; };
modules = modules-for-system pkgs;
in home-manager.lib.homeManagerConfiguration {
inherit pkgs;