This commit is contained in:
Matthew Bessette 2024-07-31 09:45:48 -04:00
parent cecf68f708
commit c85839e454
3 changed files with 14 additions and 4 deletions

View File

@ -108,10 +108,6 @@
pciutils pciutils
plasma5Packages.plasma-thunderbolt plasma5Packages.plasma-thunderbolt
# Applications
moonlight-qt
steam
# Cli # Cli
nodejs_22 nodejs_22
vim vim
@ -138,5 +134,6 @@
############ ############
services.fwupd.enable = true; services.fwupd.enable = true;
# ... # ...
} }

View File

@ -17,7 +17,11 @@
# The home.packages option allows you to install Nix packages into your # The home.packages option allows you to install Nix packages into your
# environment. # environment.
home.packages = with pkgs; [ home.packages = with pkgs; [
bruno
dbeaver-bin
moonlight-qt
signal-desktop signal-desktop
steam
]; ];
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage
@ -48,6 +52,12 @@
userName = "Matthew Bessette"; userName = "Matthew Bessette";
}; };
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
nixpkgs = { nixpkgs = {
config.allowUnfreePredicate = pkg: config.allowUnfreePredicate = pkg:
builtins.elem (pkgs.lib.getName pkg) [ builtins.elem (pkgs.lib.getName pkg) [
@ -57,6 +67,8 @@
"vscode-extension-ms-vsliveshare-vsliveshare" "vscode-extension-ms-vsliveshare-vsliveshare"
"onepassword-password-manager" "onepassword-password-manager"
"vscode-extension-ms-vscode-remote-remote-ssh" "vscode-extension-ms-vscode-remote-remote-ssh"
"steam"
"steam-original"
]; ];
}; };
} }

View File

@ -17,6 +17,7 @@ in
# rokoroku.vscode-theme-darcula # rokoroku.vscode-theme-darcula
eamodio.gitlens eamodio.gitlens
oderwat.indent-rainbow oderwat.indent-rainbow
prisma.prisma
ms-vsliveshare.vsliveshare ms-vsliveshare.vsliveshare
ms-vscode-remote.remote-ssh ms-vscode-remote.remote-ssh
]; ];