This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| description = "Basic Node/ PNPM Nix flake"; | |
| inputs = { | |
| nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05"; | |
| flake-utils.url = "github:numtide/flake-utils"; | |
| }; | |
| outputs = inputs: | |
| inputs.flake-utils.lib.eachDefaultSystem (system: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| { | |
| services.samba = { | |
| enable = true; | |
| syncPasswordsByPam = true; | |
| # You will still need to set up the user accounts to begin with: | |
| # $ sudo smbpasswd -a yourusername |
OlderNewer