summaryrefslogtreecommitdiff
path: root/hosts/users.nix
blob: a0166423baa52e9d5813216dfd991c3c31b67eaa (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
{
  config,
  pkgs,
  lib,
  ...
}: let
  shellAliases = {
    l = "lsd -lAh";
    la = "lsd -lAh";
    ports = "sudo lsof -i -P -n | grep LISTEN";
    gco = "git checkout";
    gcob = "git checkout -b";
    v = "nvim";
    sv = "sudo nvim";
    dotsin = "sh ~/dotfiles/commit.sh";
    sourceit = ". (sed 's/^/export /' .env | psub)";
    sqlite = "rlwrap sqlite3";
    # rsyn = "rsync -zuvaP --filter=':- .gitignore'"
  };
in {
  programs.fish = {
    inherit shellAliases;
    enable = true;
    # shellInit = ''
    #   if not functions -q fisher
    #     echo "no fisher"
    #     curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source
    #   end
    #   '';
    #   fisher install jorgebucaran/fisher
    #   fisher install IlanCosman/tide@v6
  };

  users = {
    users = {
      y =
        {
          createHome = true;
          home = "/home/y";
          shell = pkgs.fish;
        }
        // (
          if !pkgs.stdenv.isDarwin
          then {
            isSystemUser = false;
            isNormalUser = true;
            group = "users";
            extraGroups = [
              "systemd-journal"
              "wheel"
              "networkmanager"
              "input"
              "uinput"
              "docker"
              "plugdev"
              "uinput"
              "jellyfin"
            ];
          }
          else {}
        );
    };
  };
}