summaryrefslogtreecommitdiffstats
path: root/2configs/makefu/base.nix
blob: ab2e6f2475fa43b6f936ca42fdbcbd1196358275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{ config, lib, pkgs, ... }:

with lib;
{
    imports = [ ];
    users.extraUsers = {
        root = {
            openssh.authorizedKeys.keys = map readFile [
                ../../Zpubkeys/makefu_arch.ssh.pub
            ];
        };
        makefu = {
            uid = 9001;
            group = "users";
            home = "/home/makefu";
            createHome = true;
            useDefaultShell = true;
            extraGroups = [
                "wheel"
            ];
            openssh.authorizedKeys.keys = map readFile [
                ../../Zpubkeys/makefu_arch.ssh.pub
            ];
        };
    };

    services.openssh.enable = true;
    nix.useChroot = true;

    users.mutableUsers = true;

    boot.tmpOnTmpfs = true;
    systemd.tmpfiles.rules = [
        "d /tmp 1777 root root - -"
    ];

    environment.extraInit = ''
        EDITOR=vim
        '';

    environment.systemPackages = with pkgs; [
        git
        vim
        rxvt_unicode.terminfo
    ];

    programs.bash = {
        enableCompletion = true;
        interactiveShellInit = ''
            HISTCONTROL='erasedups:ignorespace'
            HISTSIZE=900001
            HISTFILESIZE=$HISTSIZE

            shopt -s checkhash
            shopt -s histappend histreedit histverify
            shopt -s no_empty_cmd_completion
            complete -d cd

            '';
        promptInit = ''
            case $UID in
                0) PS1='\[\e[1;31m\]\w\[\e[0m\] ' ;;
                9001) PS1='\[\e[1;32m\]\w\[\e[0m\] ' ;;
                *) PS1='\[\e[1;35m\]\u \[\e[1;32m\]\w\[\e[0m\] ' ;;
            esac
            if test -n "$SSH_CLIENT"; then
                PS1='\[\033[35m\]\h'" $PS1"
            fi
            '';
    };
    environment.shellAliases = {
        lsl = "ls -latr";
    };

    security.setuidPrograms = [ "sendmail" ];

    services.journald.extraConfig = ''
        SystemMaxUse=1G
        RuntimeMaxUse=128M
        '';
    nixpkgs.config.packageOverrides = pkgs: {
        nano = pkgs.runCommand "empty" {} "mkdir -p $out";
    };
    services.cron.enable = false;
    services.nscd.enable = false;
    boot.kernel.sysctl = {
# Enable IPv6 Privacy Extensions
        "net.ipv6.conf.all.use_tempaddr" = 2;
        "net.ipv6.conf.default.use_tempaddr" = 2;
    };
    i18n = {
        consoleKeyMap = "us";
        defaultLocale = "en_US.UTF-8";
    };

}
[cgit] Unable to lock slot /tmp/cgit/90200000.lock: No such file or directory (2)