Some updates

This commit is contained in:
Henry Hiles 2023-12-27 09:12:58 -05:00
parent 5ec4e24707
commit 4831a032ac
3 changed files with 30 additions and 28 deletions

18
flake.lock generated
View file

@ -201,11 +201,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1703527373, "lastModified": 1703674883,
"narHash": "sha256-AjypRssRtS6F3xkf7rE3/bXkIF2WJOZLbTIspjcE1zM=", "narHash": "sha256-Jna6MOmLdfgot+AopHv28L+wpwVDfaiafLtO7E4bkj0=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "80679ea5074ab7190c4cce478c600057cfb5edae", "rev": "458544594ba7f0333cf5718045ee7a8eaf5de433",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -320,11 +320,11 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1703255338, "lastModified": 1703438236,
"narHash": "sha256-Z6wfYJQKmDN9xciTwU3cOiOk+NElxdZwy/FiHctCzjU=", "narHash": "sha256-aqVBq1u09yFhL7bj1/xyUeJjzr92fXVvQSSEx6AdB1M=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "6df37dc6a77654682fe9f071c62b4242b5342e04", "rev": "5f64a12a728902226210bf01d25ec6cbb9d9265b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -358,11 +358,11 @@
"utils": "utils" "utils": "utils"
}, },
"locked": { "locked": {
"lastModified": 1703540559, "lastModified": 1703672123,
"narHash": "sha256-QjOHZc8z2ULBbecRPszSZXBk36+A6Oy/MPmrQNQ9Mgk=", "narHash": "sha256-/xhobmb2Bqv6UqPAAVtvMsUw5sgPV2CURGllf22yLJY=",
"owner": "wamserma", "owner": "wamserma",
"repo": "flake-programs-sqlite", "repo": "flake-programs-sqlite",
"rev": "b00c2a2d12a2df83ad575b81195ed4215dcdac4c", "rev": "f484317325850491d0cd5ede2a7417c6c316e1c2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -7,6 +7,8 @@
''; '';
}; };
environment = { environment = {
# systemPackages = with pkgs.fishPlugins; [
# ];
sessionVariables.fish_greeting = ""; sessionVariables.fish_greeting = "";
shells = [pkgs.fish]; shells = [pkgs.fish];
shellAliases = { shellAliases = {
@ -23,7 +25,7 @@
create = "gh repo create"; create = "gh repo create";
push = "git push"; push = "git push";
commit = "git add -A && git commit -am"; commit = "git commit -am";
# NixOS # NixOS
dev = "nix develop"; dev = "nix develop";

View file

@ -1,21 +1,21 @@
{pkgs, ...}: { {pkgs, ...}: {
wrappers.vscode = { # wrappers.vscode = {
basePackage = pkgs.vscodium; # basePackage = pkgs.vscodium;
pathAdd = with pkgs.vscode-extensions; [ # pathAdd = with pkgs.vscode-extensions; [
mkhl.direnv # mkhl.direnv
eamodio.gitlens # eamodio.gitlens
jnoortheen.nix-ide # jnoortheen.nix-ide
timonwong.shellcheck # timonwong.shellcheck
usernamehw.errorlens # usernamehw.errorlens
ritwickdey.liveserver # ritwickdey.liveserver
dbaeumer.vscode-eslint # dbaeumer.vscode-eslint
esbenp.prettier-vscode # esbenp.prettier-vscode
oderwat.indent-rainbow # oderwat.indent-rainbow
astro-build.astro-vscode # astro-build.astro-vscode
pkief.material-icon-theme # pkief.material-icon-theme
streetsidesoftware.code-spell-checker # streetsidesoftware.code-spell-checker
arcticicestudio.nord-visual-studio-code # arcticicestudio.nord-visual-studio-code
]; # ];
}; # };
} }