separate configs, LTE modem, wireguard, zsh
This commit is contained in:
parent
b73d0e9dbe
commit
8ce905a427
11 changed files with 360 additions and 184 deletions
24
modules/users.nix
Normal file
24
modules/users.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# User accounts configuration
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
# Define a user account. Don't forget to set a password with 'passwd'.
|
||||
users.users.asxpi = {
|
||||
isNormalUser = true;
|
||||
description = "Sergei P";
|
||||
extraGroups = [ "networkmanager" "wheel" "dialout" ];
|
||||
shell = pkgs.zsh;
|
||||
packages = with pkgs; [
|
||||
# Internet
|
||||
thunderbird
|
||||
telegram-desktop
|
||||
firefox-devedition
|
||||
# Music
|
||||
tidal-hifi
|
||||
# Discord
|
||||
discord-ptb
|
||||
# Code
|
||||
zed-editor
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue