This commit is contained in:
Till 2024-12-05 23:15:51 +01:00
parent 01e1e23a01
commit 66c8d3ee0c
5 changed files with 7 additions and 33 deletions

View file

@ -13,9 +13,8 @@
users.users.till = {
isNormalUser = true;
description = "Till";
extraGroups = [
"wheel"
];
extraGroups = [ "wheel" ];
shell = pkgs.fish;
};
environment.systemPackages = with pkgs; [

View file

@ -27,7 +27,6 @@
extraGroups = [
"networkmanager"
];
shell = pkgs.fish;
};
hardware.pulseaudio.enable = false;

View file

@ -1,12 +0,0 @@
{ config, pkgs, ... }:
{
users.users.laura = {
home = "/home/laura";
isNormalUser = true;
description = "Laura";
extraGroups = [
"networkmanager"
];
};
}

View file

@ -1,12 +0,0 @@
{ config, pkgs, ... }:
{
users.users.laura = {
home = "/home/laura";
isNormalUser = true;
description = "Laura";
extraGroups = [
"networkmanager"
];
};
}

View file

@ -18,6 +18,11 @@
recommendedTlsSettings = true;
};
security.acme = {
acceptTerms = true;
defaults.email = "till@ktiu.net";
};
services.nginx.virtualHosts."outline.ktiu.net" = {
addSSL = true;
enableACME = true;
@ -37,9 +42,4 @@
};
};
security.acme = {
acceptTerms = true;
defaults.email = "till@ktiu.net";
};
}