mirror of
https://github.com/davegallant/nix-config
synced 2026-01-07 14:44:07 +00:00
Compare commits
4 Commits
45d17393de
...
0d705f12d3
| Author | SHA1 | Date | |
|---|---|---|---|
| 0d705f12d3 | |||
| d31db1b604 | |||
| c32e3081e2 | |||
| 602fec4895 |
@@ -24,6 +24,7 @@
|
|||||||
fd
|
fd
|
||||||
github-cli
|
github-cli
|
||||||
hadolint
|
hadolint
|
||||||
|
lazygit
|
||||||
progress
|
progress
|
||||||
ripgrep
|
ripgrep
|
||||||
shellcheck
|
shellcheck
|
||||||
|
|||||||
18
flake.lock
generated
18
flake.lock
generated
@@ -298,11 +298,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs-master": {
|
"nixpkgs-master": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1765639711,
|
"lastModified": 1765719588,
|
||||||
"narHash": "sha256-FHgcKgFONNW2epilU72fWou1D/P+DgRSDvswAlua9tg=",
|
"narHash": "sha256-0VT36Ig9Z5rgXtQ4dgVgrDPS1UrASffWC/r4O9zFUaE=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "2e0977107afca75db2966c059105370da3c71da5",
|
"rev": "f9a7fdd6101319fb1220d0905909aea54e5d8999",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -376,11 +376,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_4": {
|
"nixpkgs_4": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1765311797,
|
"lastModified": 1765608474,
|
||||||
"narHash": "sha256-mSD5Ob7a+T2RNjvPvOA1dkJHGVrNVl8ZOrAwBjKBDQo=",
|
"narHash": "sha256-9Wx53UK0z8Di5iesJID0tS1dRKwGxI4i7tsSanOHhF0=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "09eb77e94fa25202af8f3e81ddc7353d9970ac1b",
|
"rev": "28bb483c11a1214a73f9fd2d9928a6e2ea86ec71",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -416,11 +416,11 @@
|
|||||||
"systems": "systems_2"
|
"systems": "systems_2"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1765632205,
|
"lastModified": 1765647805,
|
||||||
"narHash": "sha256-2FVFinUhMwp2Z3OldK+WjlABf6jgaxhsx+cAJfH3OSY=",
|
"narHash": "sha256-CdaiOfpBiS4kw/DR0Ut+02fpFnjM8hNZMZ53a1pavak=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "nixvim",
|
"repo": "nixvim",
|
||||||
"rev": "844cb1c1b72cda6baec95fd9f18c2937f8f6463c",
|
"rev": "f0b0cc7cae2cf5d76608c9164ab8824a2387e146",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
17
home.nix
17
home.nix
@@ -42,13 +42,16 @@ in
|
|||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
user.name = "Dave Gallant";
|
user.name = "Dave Gallant";
|
||||||
|
user.signingkey = "5A548984C7377E4D";
|
||||||
|
commit.gpgsign = true;
|
||||||
|
tag.gpgsign = true;
|
||||||
alias = {
|
alias = {
|
||||||
aa = "add -A .";
|
aa = "add -A .";
|
||||||
br = "branch";
|
br = "branch";
|
||||||
c = "commit -S";
|
c = "commit";
|
||||||
cm = "commit -S -m";
|
cm = "commit -m";
|
||||||
ca = "commit -S --amend";
|
ca = "commit --amend";
|
||||||
cane = "commit -S --amend --no-edit";
|
cane = "commit --amend --no-edit";
|
||||||
cb = "checkout -b";
|
cb = "checkout -b";
|
||||||
co = "checkout";
|
co = "checkout";
|
||||||
cmp = "! git checkout main && git pl";
|
cmp = "! git checkout main && git pl";
|
||||||
@@ -388,13 +391,11 @@ in
|
|||||||
"make"
|
"make"
|
||||||
"material-icon-theme"
|
"material-icon-theme"
|
||||||
"nix"
|
"nix"
|
||||||
"tokyo-night"
|
|
||||||
"toml"
|
"toml"
|
||||||
"vue"
|
"vue"
|
||||||
];
|
];
|
||||||
userSettings = {
|
userSettings = {
|
||||||
icon_theme = "Material Icon Theme";
|
icon_theme = "Material Icon Theme";
|
||||||
theme = lib.mkForce "Tokyo Night";
|
|
||||||
features = {
|
features = {
|
||||||
edit_prediction_provider = "copilot";
|
edit_prediction_provider = "copilot";
|
||||||
};
|
};
|
||||||
@@ -404,8 +405,8 @@ in
|
|||||||
};
|
};
|
||||||
autosave = "on_focus_change";
|
autosave = "on_focus_change";
|
||||||
format_on_save = "off";
|
format_on_save = "off";
|
||||||
ui_font_size = lib.mkForce 20;
|
ui_font_size = lib.mkForce 18;
|
||||||
buffer_font_size = lib.mkForce 18;
|
buffer_font_size = lib.mkForce 16;
|
||||||
};
|
};
|
||||||
userKeymaps = [
|
userKeymaps = [
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user