Compare commits
No commits in common. "47b0643cdf2f619a585a23f4e1cc76be0b73f63c" and "4ad63d79811a33786a85074228a3665e006564f1" have entirely different histories.
47b0643cdf
...
4ad63d7981
3 changed files with 17 additions and 26 deletions
24
flake.lock
generated
24
flake.lock
generated
|
|
@ -7,11 +7,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1773804142,
|
||||
"narHash": "sha256-XiW/Tsauyig4Oog1yjxBAzTfO8HAiwtpT0uLh4QpVJ8=",
|
||||
"lastModified": 1773711031,
|
||||
"narHash": "sha256-S7jOY+xHm8Y8N6Amm663/saMZ+VSGBGZfWiQrkVyXQM=",
|
||||
"owner": "ryoppippi",
|
||||
"repo": "claude-code-overlay",
|
||||
"rev": "292f18fd1be3376acfa7e7238e4f5b4607700cd9",
|
||||
"rev": "19b4712c89218e578e93b32143e51f70022a7bfb",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -48,11 +48,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1773810247,
|
||||
"narHash": "sha256-6Vz1Thy/1s7z+Rq5OfkWOBAdV4eD+OrvDs10yH6xJzQ=",
|
||||
"lastModified": 1773681856,
|
||||
"narHash": "sha256-+bRqxoFCJFO9ZTFhcCkzNXbDT3b8AEk88fyjB7Is6eo=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "d47357a4c806d18a3e853ad2699eaec3c01622e7",
|
||||
"rev": "57d5560ee92a424fb71fde800acd6ed2c725dfce",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -119,11 +119,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1773734432,
|
||||
"narHash": "sha256-IF5ppUWh6gHGHYDbtVUyhwy/i7D261P7fWD1bPefOsw=",
|
||||
"lastModified": 1773646010,
|
||||
"narHash": "sha256-iYrs97hS7p5u4lQzuNWzuALGIOdkPXvjz7bviiBjUu8=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "cda48547b432e8d3b18b4180ba07473762ec8558",
|
||||
"rev": "5b2c2d84341b2afb5647081c1386a80d7a8d8605",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -141,11 +141,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1773868362,
|
||||
"narHash": "sha256-xKO8rtuLbWaZD9Wcbbrs94eqF9DCuTz18AZOEMRRups=",
|
||||
"lastModified": 1773785107,
|
||||
"narHash": "sha256-AO9pqTrp/m+pPbobe9ISKOQaSqPCXLJ87A+ADVVuJyg=",
|
||||
"owner": "nix-community",
|
||||
"repo": "NUR",
|
||||
"rev": "9b4ccdf51c867b73a6dd9d03cd577e013b43ccd9",
|
||||
"rev": "ec8410da639a9b314f867cfe808e6b9912a575b4",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
|||
|
|
@ -53,6 +53,11 @@
|
|||
nixpkgs.overlays = [
|
||||
inputs.nur.overlays.default
|
||||
inputs.claude-code-overlay.overlays.default
|
||||
(final: prev: {
|
||||
zulip = prev.zulip.override {
|
||||
electron_39 = final.electron_38;
|
||||
};
|
||||
})
|
||||
];
|
||||
}
|
||||
];
|
||||
|
|
|
|||
14
home.nix
14
home.nix
|
|
@ -68,20 +68,6 @@ in
|
|||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# Scripts
|
||||
(writeShellScriptBin "tea-init" ''
|
||||
name="''${1:-$(basename "$PWD")}"
|
||||
login="''${2:-git.extremist.software}"
|
||||
user=$(tea logins list -o simple | awk -v l="$login" '$2 == "https://"l {print $4}')
|
||||
if [ -z "$user" ]; then
|
||||
echo "error: no tea login found for $login" >&2
|
||||
exit 1
|
||||
fi
|
||||
tea repo create --name "$name" --login "$login"
|
||||
git remote add origin "git@''${login}:''${user}/''${name}.git"
|
||||
git push -u origin "$(git branch --show-current)"
|
||||
'')
|
||||
|
||||
# CLI
|
||||
bat
|
||||
ffmpeg-full
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue