fixed refreshrate on desktop

switch to neovim as a pager
added parrot and mining modules
deleted amd module
moved the rest of vfio configuration to vfio.nix
moved git from home-manager to system configuration
This commit is contained in:
ISnortPennies 2023-01-23 21:10:16 -05:00
parent 67b3e39735
commit 6b7ce7d133
25 changed files with 152 additions and 165 deletions

View file

@ -1,4 +1,4 @@
{username, ...}: {
{settings, ...}: {
services.samba-wsdd.enable = true; # make shares visible for windows 10 clients
networking.firewall = {
allowedTCPPorts = [139 445];
@ -10,11 +10,11 @@
openFirewall = true;
shares = {
Share = {
path = "/home/${username}/Share";
path = "/home/${settings.username}/Share";
browseable = "no";
"read only" = "no";
"guest ok" = "no";
"force user" = "${username}";
"force user" = "${settings.username}";
"force group" = "users";
};
};