diff options
-rw-r--r-- | CHANGELOG.md | 14 | ||||
-rw-r--r-- | system/users/default.nix | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6aeb4a2..cc864f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## v0.7.0 - 2023-08-04 +#### Bug Fixes +- **(system/services/nix-sync)** Remove timeout on build - (dfb847a) - Soispha +- **(system/services/nix-sync)** Rebase on pulls, to allow for force pushes - (8d9ef95) - Soispha +- **(system/services/nix-sync)** Make the timer relative to the unit start - (18aa0c5) - Soispha +- **(system/users)** declare nixremote as normal user - (e326476) - sils +#### Build system +- **(flake)** Update - (7e153ea) - Soispha +#### Features +- **(system/services/nginx/hosts)** Add another domain - (81bf112) - Soispha +- **(system/users)** Add nixremote - (6e2578e) - sils + +- - - + ## v0.6.0 - 2023-07-28 #### Bug Fixes - **(treewide)** Use correct function argument specification - (8350b2e) - Soispha diff --git a/system/users/default.nix b/system/users/default.nix index 822c94b..06020a6 100644 --- a/system/users/default.nix +++ b/system/users/default.nix @@ -48,6 +48,20 @@ openssh.authorizedKeys.keys = [ ]; }; + nixremote = { + name = "nixremote"; + isNormalUser = true; + createHome = true; + home = "/home/nixremote"; + uid = 1003; + group = "nixremote"; + openssh.authorizedKeys.keys = [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbSWqFzb+WTq2JVoRGoTkCkP7AM3bNY91bsUBeoQQc8gKAWuqCrpAOmr2Q2QMaTTGEOM0CsWfWLs3ZYtynHmc7wIFc4T/sUloV+dB9oSCmOk5ePxtj8+gpPK35Ja+ug5zmXsaI4s+n9mEbuuEjn33MxDYCUzAI+aWvWe68u/j+FM3u9c3Ta009rotajjSZ/cmIltgNLsG1rnAZRpwmLVg5UL4cb9um54o/NLYFd2KAekQFVbwUQDzzqriZhWmzkfhnznBMDblf9R1xvZ18Lqv3JF21shdaR43NW1wtuntBvAdsVYK2VUEbj+3MxTkK0aQ/E9SHMtH8MRE4oxU74TeTWfIhuSZk9/wekzSNMkHP3ReFC6B9xCMYa+ZqaTaGSWLQi78AQDeM2F9rAfp3hQzyRa7T7qKlgbae/hEb07xZglqmG7eml9vPSt4AHv5Y176Q95NiiWduGoLQOmjvSBMU9/KEGrGKyLfGH1Wa2EOfPxKKcvcHW0Xi9PlPiuP0nYk= root@thinklappi" + ]; + }; + }; + groups.nixremote = { + gid = 1004; }; }; } |