mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
made username easily changable
switched from independant home-manager updating to unified updating updated disk parttion uuid's after resintalling
This commit is contained in:
parent
1c416dc728
commit
733eda4798
8 changed files with 44 additions and 57 deletions
|
|
@ -1,3 +1,4 @@
|
|||
{username, ...}:
|
||||
{
|
||||
services.samba-wsdd.enable = true; # make shares visible for windows 10 clients
|
||||
networking.firewall = {
|
||||
|
|
@ -10,11 +11,11 @@
|
|||
openFirewall = true;
|
||||
shares = {
|
||||
Share = {
|
||||
path = "/home/gerg/Share";
|
||||
path = "/home/${username}/Share";
|
||||
browseable = "no";
|
||||
"read only" = "no";
|
||||
"guest ok" = "no";
|
||||
"force user" = "gerg";
|
||||
"force user" = "${username}";
|
||||
"force group" = "users";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue