summaryrefslogtreecommitdiffstats
path: root/old/modules/nomic/users.nix
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-07-16 23:22:30 +0200
committertv <tv@shackspace.de>2015-07-16 23:22:30 +0200
commit57c520b722f25f384301118046bf9cf182d4edd7 (patch)
tree57983c04bb49fe0375300861111a61cede545794 /old/modules/nomic/users.nix
parent447c63edbd403abf026800d10594ed037b4304e9 (diff)
Goodbye old world, and thanks for all the fish!
Diffstat (limited to 'old/modules/nomic/users.nix')
-rw-r--r--old/modules/nomic/users.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/old/modules/nomic/users.nix b/old/modules/nomic/users.nix
deleted file mode 100644
index 70e1d8dcd..000000000
--- a/old/modules/nomic/users.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ pkgs, ... }:
-
-{
- imports = [
- { users = import <secrets/users.nix>; }
- {
- users.extraUsers = {
- root = {
- openssh.authorizedKeys.keys = [
- (pkgs.lib.readFile <pubkeys/tv_wu.ssh.pub>)
- ];
- };
- tv = {
- uid = 1337;
- group = "users";
- home = "/home/tv";
- createHome = true;
- useDefaultShell = true;
- extraGroups = [
- "audio"
- "video"
- "wheel"
- ];
- openssh.authorizedKeys.keys = [
- (pkgs.lib.readFile <pubkeys/tv_wu.ssh.pub>)
- ];
- };
- };
- }
- ];
-
- users.defaultUserShell = "/run/current-system/sw/bin/bash";
- users.mutableUsers = false;
-
- security.setuidPrograms = [
- "sendmail" # for sudo
- ];
-
- security.sudo.extraConfig = ''
- Defaults mailto="tv@wu.retiolum"
- '';
-}