17 lines
308 B
Nix
17 lines
308 B
Nix
{ config, pkgs, lib, ... }:
|
||
|
||
{
|
||
imports = [ ../quickly.nix ];
|
||
config = {
|
||
users.users.nixos = {
|
||
isNormalUser = true;
|
||
password = "password123";
|
||
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||
packages = with pkgs; [
|
||
tmux
|
||
htop
|
||
tree
|
||
];
|
||
};
|
||
};
|
||
} |