blob: 55985b635bba35c45ae4c3847cde46446a08219e (
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
|
{ 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";
# TODO: commented out pacckages are currently not available on ARM, and thus not on the
# moissanite machine. filter them out in a better way.
packages = (with pkgs; [
firefox
thunderbird
# tor-browser
jetbrains-toolbox
]) ++ (with unstablePkgs; [
godot_4
]) ++ (with auxiliaryPkgs; [
# TODO: get discord (or maybe an alternative client?) to work!
# discord
element-desktop
obsidian
]);
};
}
|