summary refs log tree commit diff
path: root/modules/user.nix
blob: e8f658e5585f1bef0e333c3d6c20b109b0d9eda5 (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
{ config, pkgs, unstablePkgs, auxiliaryPkgs, ... }:

{
  users.mutableUsers = false;
  users.users.mel = {
    isNormalUser = true;
    description = "Mel";
    shell = pkgs.fish;
    extraGroups = [ "wheel" "dialout" "kvm" "networkmanager" "adbusers" ];
    hashedPassword = "$y$j9T$4wGl.YJizIpcfFv0LyvLU0$7LLEkjIFWBOV.XXynReCOczBYNX0EZfMPIDB/bmmhhC";
    
    packages = (with pkgs; [
      firefox
      thunderbird
      tor-browser
      jetbrains-toolbox
    ]) ++ (with unstablePkgs; [
      godot_4
    ]) ++ (with auxiliaryPkgs; [
      discord
      element-desktop
      obsidian
    ]);
  };
}