configurations of hq services
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- { pkgs, ... }:
-
- {
- users.users.k-ot = {
- packages = with pkgs;
- [ screen tmux ];
- createHome = true;
- isNormalUser = true;
- uid = 1000;
- extraGroups = [ "wheel" "audio" ];
- password = "k-otk-ot";
- };
- }
|