Compare commits
2 Commits
nixbsd
...
7a05c3221f
| Author | SHA1 | Date | |
|---|---|---|---|
|
7a05c3221f
|
|||
|
14088dfd01
|
@@ -21,6 +21,20 @@
|
||||
pkgs.vscode-extensions.arrterian.nix-env-selector
|
||||
pkgs.vscode-extensions.jnoortheen.nix-ide
|
||||
];
|
||||
# profiles.default.userSettings = {
|
||||
# "claudeCode.claudeProcessWrapper" = "${pkgs.claude-code}/bin/claude-code";
|
||||
# };
|
||||
};
|
||||
|
||||
# Just a fixed-location executable that launches claude code
|
||||
# so we can point vscode's extenstion at it, not the nix store path
|
||||
# remove it once we configure vscode using nix
|
||||
home.file.".config/claude-code-wrapper" = {
|
||||
text = ''
|
||||
#!${pkgs.stdenv.shell}
|
||||
exec ${pkgs.claude-code}/bin/claude "$@"
|
||||
'';
|
||||
executable = true;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
||||
+10
-1
@@ -6,7 +6,16 @@
|
||||
config = lib.mkIf (config.lumpiastyHome.enablePcApps && osConfig.lumpiasty.pc) {
|
||||
home.packages = with pkgs; [
|
||||
vesktop
|
||||
spotify
|
||||
# Manual update, not yet in nixpkgs as for now
|
||||
(spotify.overrideAttrs (old: rec {
|
||||
version = "1.2.86.502.g8cd7fb22";
|
||||
rev = "94";
|
||||
src = fetchurl {
|
||||
name = "spotify-${version}-${rev}.snap";
|
||||
url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap";
|
||||
hash = "sha256-XhwyaObck6viIvDRXEztlSLja5fsfw5HgHUUQzMehLI=";
|
||||
};
|
||||
}))
|
||||
pass-wayland
|
||||
teamspeak6-client
|
||||
easyeffects
|
||||
|
||||
Reference in New Issue
Block a user