stuff
This commit is contained in:
parent
cecf68f708
commit
c85839e454
|
|
@ -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;
|
||||||
|
|
||||||
# ...
|
# ...
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue