mirror of
https://github.com/wlcx/home.git
synced 2025-12-11 12:53:45 +00:00
update to 25.11
This commit is contained in:
parent
7c56f42779
commit
31b30027ce
16
flake.lock
generated
16
flake.lock
generated
@ -48,32 +48,32 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1756245065,
|
"lastModified": 1764866045,
|
||||||
"narHash": "sha256-aAZNbGcWrVRZgWgkQbkabSGcDVRDMgON4BipMy69gvI=",
|
"narHash": "sha256-0GsEtXV9OquDQ1VclQfP16cU5VZh7NEVIOjSH4UaJuM=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "54b2879ce622d44415e727905925e21b8f833a98",
|
"rev": "f63d0fe9d81d36e5fc95497217a72e02b8b7bcab",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"ref": "release-25.05",
|
"ref": "release-25.11",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1756494058,
|
"lastModified": 1764948399,
|
||||||
"narHash": "sha256-Yxg5zKIM450FAq7ihT6wkbuJ+Fl3KjbSpPjwFhSgMGc=",
|
"narHash": "sha256-yFQk8eqAX41XTZ20q4AV8QKvO3AcYgkuTE0IX1S8znA=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "2788026c663a210beeb81e85f93ca5e86243fb3c",
|
"rev": "97b06a59ddaf7f110b3846ce789a52e0486b42db",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"ref": "release-25.05",
|
"ref": "release-25.11",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,14 +3,14 @@
|
|||||||
inputs = {
|
inputs = {
|
||||||
# Nixpkgs
|
# Nixpkgs
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
url = "github:nixos/nixpkgs/release-25.05";
|
url = "github:nixos/nixpkgs/release-25.11";
|
||||||
};
|
};
|
||||||
nixpkgs-unstable = {
|
nixpkgs-unstable = {
|
||||||
url = "github:nixos/nixpkgs";
|
url = "github:nixos/nixpkgs";
|
||||||
};
|
};
|
||||||
# Other modules
|
# Other modules
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager/release-25.05";
|
url = "github:nix-community/home-manager/release-25.11";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
|
|||||||
19
home/git.nix
19
home/git.nix
@ -4,21 +4,21 @@
|
|||||||
git-open
|
git-open
|
||||||
tea
|
tea
|
||||||
];
|
];
|
||||||
programs.git = {
|
programs.delta = {
|
||||||
enable = true;
|
|
||||||
lfs.enable = true;
|
|
||||||
userName = "Sam Willcocks";
|
|
||||||
userEmail = "sam@wlcx.cc";
|
|
||||||
|
|
||||||
delta = {
|
|
||||||
# Better diffs
|
# Better diffs
|
||||||
enable = true;
|
enable = true;
|
||||||
|
enableGitIntegration = true;
|
||||||
options = {
|
options = {
|
||||||
line-numbers = true;
|
line-numbers = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
programs.git = {
|
||||||
aliases = {
|
enable = true;
|
||||||
|
lfs.enable = true;
|
||||||
|
settings = {
|
||||||
|
user.name = "Sam Willcocks";
|
||||||
|
user.email = "sam@wlcx.cc";
|
||||||
|
alias = {
|
||||||
a = "add";
|
a = "add";
|
||||||
ap = "add -p";
|
ap = "add -p";
|
||||||
br = "branch";
|
br = "branch";
|
||||||
@ -44,7 +44,6 @@
|
|||||||
|
|
||||||
gone = ''! git fetch -p && git for-each-ref --format '%(refname:short) %(upstream:track)' │ awk '$2 == "[gone]" {print $1}' | xargs -r git branch -D'';
|
gone = ''! git fetch -p && git for-each-ref --format '%(refname:short) %(upstream:track)' │ awk '$2 == "[gone]" {print $1}' | xargs -r git branch -D'';
|
||||||
};
|
};
|
||||||
extraConfig = {
|
|
||||||
branch.sort = "-committerdate";
|
branch.sort = "-committerdate";
|
||||||
push.default = "current";
|
push.default = "current";
|
||||||
init.defaultBranch = "main";
|
init.defaultBranch = "main";
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user