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

View file

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

View file

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