got nvidia propritary Drivers working{

This commit is contained in:
steven carpenter 2025-09-01 16:20:13 -04:00
parent 92fea90ac6
commit 9ba38635df
9 changed files with 170 additions and 96 deletions

View file

@ -27,7 +27,7 @@
speccon18.hm.zsh.enable = true;
speccon18.hm.rio.enable = false;
speccon18.hm.ssh.enable = true;
speccon18.hm.superfile.enable = true;
speccon18.hm.superfile.enable = false;
# Home Manager needs a bit of information about you and the paths it should
# manage.
home = {
@ -53,7 +53,7 @@
superfile
#rio
#imgcat
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello
@ -71,7 +71,13 @@
# echo "Hello, ${config.home.username}!"
# '')
];
sessionVariables = {
POP_SMTP_HOST = "smtp.protonmail.ch";
POP_SMTP_PORT = "587";
POP_SMTP_USERNAME = "steven.carpenter@skdevstudios.com";
POP_FROM = "steven.carpenter@skdevstudios.com";
POP_SMTP_PASSWORD = "2SJ83CHLPPVQ2RLT";
};
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
file = {

View file

@ -8,7 +8,7 @@
package = pkgs.superfile;
hotkeys = {
confirm = [ "enter" "" ];
quit = [ "ctrl+c" "" ];
quit = [ "ctrl+q" "" ];
list_up = [ "k" "up" ];
list_down = [ "j" "down" ];
page_up = [ "pgup" "" ];

View file

@ -17,12 +17,13 @@
syntaxHighlighting.enable = lib.mkDefault true;
shellAliases = {
ls = "eza -l";
lsa = "eza -al";
grep = "rg";
mo2 = "steam-run steamtinkerlaunch mo2 start";
ls = "eza --icons -alog --group-directories-first --no-permissions --no-time --total-size --git --header";
#grep = "rg";
osrb = "sudo nixos-rebuild $1 --flake ~/Documents/code/nix/nixos-config/#katana";
nvim-cfg = "nvim /home/speccon18/.config/nvim/";
cat = "bat";
nvim-cfg = "nvim /home/speccon18/.config/nvim/";
edit-nix-cfg = "nvim --cmd 'cd /home/speccon18/Documents/code/nix/nixos-config' flake.nix";
cat = "bat";
};
localVariables = {