Compare commits

..

No commits in common. "fd710c41f544f9e73f9f461b21ed24387cdfa6aa" and "71717ba874deb6476a2b14ff8768240ec96344b9" have entirely different histories.

3 changed files with 12 additions and 22 deletions

12
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1740494361, "lastModified": 1738667255,
"narHash": "sha256-Dd/GhJ9qKmUwuhgt/PAROG8J6YdU2ZjtJI9SQX5sVQI=", "narHash": "sha256-sMMQb9NydZqQ/MvvtPp+Ny0W9P0Jk0moU7SrTBlO5Vo=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "74f0a8546e3f2458c870cf90fc4b38ac1f498b17", "rev": "7abcf59a365430b36f84eaa452a466b11e469e33",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1740367490, "lastModified": 1738546358,
"narHash": "sha256-WGaHVAjcrv+Cun7zPlI41SerRtfknGQap281+AakSAw=", "narHash": "sha256-nLivjIygCiqLp5QcL7l56Tca/elVqM9FG1hGd9ZSsrg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "0196c0175e9191c474c26ab5548db27ef5d34b05", "rev": "c6e957d81b96751a3d5967a0fd73694f303cc914",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -238,12 +238,8 @@
basalt-monado # tracking for VR basalt-monado # tracking for VR
opencomposite # compatibility layer for VR opencomposite # compatibility layer for VR
# why did these two disappear??? # why did these two disappear???
usbutils # provide lsusb, etc. usbutils
pciutils # provide lspci, etc. pciutils
rustdesk # the rustdesk remote desktop client
vorta # borg backup UI
ncdu # nncurses tool for examining disk usage
psmisc # process tools like killall
]; ];
programs.zsh.enable = true; programs.zsh.enable = true;
programs.git = { programs.git = {
@ -307,13 +303,9 @@
services.openssh.enable = true; services.openssh.enable = true;
services.openssh.ports = [ 2112 ]; # must be a list...for some reason. services.openssh.ports = [ 2112 ]; # must be a list...for some reason.
services.openssh.settings.PasswordAuthentication = false; services.openssh.settings.PasswordAuthentication = false;
services.openssh.settings.LogLevel = "VERBOSE"; # required for fail2ban to work properly
services.fail2ban.enable = true; # by default, the SSH jail enabled
# Enable mobile shell (for roaming, intermittent connectivity, etc) # Enable mobile shell (for roaming, intermittent connectivity, etc)
programs.mosh.enable = true; programs.mosh.enable = true;
# Enable remote desktop access via rustdesk
#services.rustdesk-server.enable = false;
#services.rustdesk-server.openFirewall = false;
# RX 6700 XT setup # RX 6700 XT setup
hardware.graphics.extraPackages = [ hardware.graphics.extraPackages = [
pkgs.amdvlk pkgs.amdvlk
@ -341,9 +333,9 @@
services.ollama = { services.ollama = {
enable = true; enable = true;
acceleration = "rocm"; acceleration = "rocm";
#environmentVariables = { environmentVariables = {
# HCC_AMDGPU_TARGET = "gfx1031"; # used to be necessary, but doesn't seem to anymore HCC_AMDGPU_TARGET = "gfx1031"; # used to be necessary, but doesn't seem to anymore
#}; };
rocmOverrideGfx = "10.3.0"; rocmOverrideGfx = "10.3.0";
}; };
system.activationScripts = { system.activationScripts = {

View file

@ -34,8 +34,6 @@
# (pkgs.writeShellScriptBin "my-hello" '' # (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!" # echo "Hello, ${config.home.username}!"
# '') # '')
# Installed manually:
# abra - ~/.local/bin
]; ];
# 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