1
1
Fork 0

Compare commits

..

No commits in common. "60988d86d97bb64546d41cd98fa700e2eeb5b3cf" and "dc4377732f47de54582d202e8dbcb5251b7d6a86" have entirely different histories.

3 changed files with 1 additions and 10 deletions

View File

@ -13,11 +13,9 @@ in
# Create a user for the server process to run under
users.users.amanuensis = {
isNormalUser = true;
group = "amanuensis";
description = "Amanuensis server user";
packages = [ python3-with-amanuensis-requires ];
};
users.groups.amanuensis = {};
# Create the server process systemd unit
systemd.services.amanuensis = {

View File

@ -9,7 +9,7 @@
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./amanuensis.nix
#./redstring.nix
./redstring.nix
./catacomb.nix
./gitea.nix
];
@ -23,8 +23,6 @@
};
boot.kernelParams = ["console=ttyS0"];
nix.package = pkgs.nixFlakes;
networking.hostName = "empyrean";
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
@ -53,7 +51,6 @@
vim htop git tinc_pre python3
gitea
];
environment.variables.EDITOR = "vim";
services.nginx = {
enable = true;
@ -118,10 +115,8 @@
users.users.tvb = {
isNormalUser = true;
group = "tvb";
extraGroups = [ "wheel" ]; # Enable sudo for the user.
};
users.groups.tvb = {};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions

View File

@ -18,7 +18,6 @@ let
redstringUser = {
name = "redstring";
description = "redstring service user";
group = "redstring";
isSystemUser = true;
};
@ -72,7 +71,6 @@ let
in
{
users.users.redstring = redstringUser;
users.groups.redstring = {};
# Run the setup script on activation
system.activationScripts.redstringSetup = "${redstringSetup}/bin/redstring-setup.sh";