updated some packages

This commit is contained in:
Kulvir Singh
2025-02-13 10:56:48 +05:30
parent 996217b767
commit 678d731ce0
7 changed files with 24 additions and 21 deletions

24
flake.lock generated
View File

@@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1738428726, "lastModified": 1739416022,
"narHash": "sha256-OUoEgorFHBVnqQ2lITqs6MGN7MH4t/8hLEO29OKu6CM=", "narHash": "sha256-Af1CIT+XlXEb+Dk11sgPDzJoOUiada2Xoj5hA8TBvLY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "dae6d3460c8bab3ac9f38a86affe45b32818e764", "rev": "c9d343cfa0565671cc7e8d5aefebaf61cc840abd",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -27,11 +27,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1738277753, "lastModified": 1739302241,
"narHash": "sha256-iyFcCOk0mmDiv4ut9mBEuMxMZIym3++0qN1rQBg8FW0=", "narHash": "sha256-NXQXFU6HOschZ+8ZKrNOlwlHelez8vPl+dCiUaJ82/U=",
"owner": "LnL7", "owner": "LnL7",
"repo": "nix-darwin", "repo": "nix-darwin",
"rev": "49b807fa7c37568d7fbe2aeaafb9255c185412f9", "rev": "a6746213b138fe7add88b19bafacd446de574ca7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -42,11 +42,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1738297584, "lastModified": 1739138025,
"narHash": "sha256-AYvaFBzt8dU0fcSK2jKD0Vg23K2eIRxfsVXIPCW9a0E=", "narHash": "sha256-M4ilIfGxzbBZuURokv24aqJTbdjPA9K+DtKUzrJaES4=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9189ac18287c599860e878e905da550aa6dec1cd", "rev": "b2243f41e860ac85c0b446eadc6930359b294e79",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -58,11 +58,11 @@
}, },
"nixpkgs-stable": { "nixpkgs-stable": {
"locked": { "locked": {
"lastModified": 1738433464, "lastModified": 1739415763,
"narHash": "sha256-7FY9FFafS1NMyhL8d/SwLgLglU9vDJqWm83grbnLD2A=", "narHash": "sha256-cGoUtw8NeOXxizbX3ZgWIgF7s13OYCTWRM+IE1uQx+A=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "0ab13642a5960f31c54ea25747deac406c447093", "rev": "8f276411ff7ba4510d9158084d6b6500879614b6",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -79,7 +79,7 @@
}; };
}; };
system.stateVersion = 4; system.stateVersion = 5;
time.timeZone = "Asia/Calcutta"; time.timeZone = "Asia/Calcutta";
} }

View File

@@ -19,7 +19,7 @@
home.packages = [ home.packages = [
pkgs.air pkgs.air
# pkgs.bun pkgs.bun
pkgs.go pkgs.go
pkgs.nodejs_23 pkgs.nodejs_23
# pkgs.python314 # coz awsebcli requires python in $PATH # pkgs.python314 # coz awsebcli requires python in $PATH

View File

@@ -24,6 +24,10 @@
homebrew = { homebrew = {
enable = true; enable = true;
brews = [
# "bun"
];
caskArgs = { caskArgs = {
appdir = "/Applications"; appdir = "/Applications";
}; };
@@ -50,6 +54,8 @@
cleanup = "zap"; cleanup = "zap";
}; };
taps = []; taps = [
# "oven-sh/bun"
];
}; };
} }

View File

@@ -14,10 +14,7 @@
nixpkgs.hostPlatform = "${system}"; nixpkgs.hostPlatform = "${system}";
services.nix-daemon.enable = true;
nix.gc = { nix.gc = {
user = "root";
automatic = lib.mkDefault true; automatic = lib.mkDefault true;
options = lib.mkDefault "--delete-older-than 5d"; options = lib.mkDefault "--delete-older-than 5d";
}; };

View File

@@ -6,8 +6,8 @@
eval "$(/opt/homebrew/bin/brew shellenv)" eval "$(/opt/homebrew/bin/brew shellenv)"
export PATH="/opt/homebrew/bin:$PATH" export PATH="/opt/homebrew/bin:$PATH"
export BUN_INSTALL="$HOME/.bun" # export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH" # export PATH="$BUN_INSTALL/bin:$PATH"
''; '';
shellAliases = { shellAliases = {
ls = "lsd"; ls = "lsd";

View File

@@ -60,7 +60,7 @@
}; };
nodejs = { nodejs = {
detect_files = ["!bun.lockb"]; detect_files = ["!bun.lock"];
format = "[$symbol$version ]($style)"; format = "[$symbol$version ]($style)";
version_format = "\${major}.\${minor}"; version_format = "\${major}.\${minor}";
}; };