25 lines
535 B
Nix
25 lines
535 B
Nix
{ config, pkgs, lib, ... }:
|
||
|
||
{
|
||
imports = [
|
||
../quickly.nix
|
||
../installer/installer.nix
|
||
];
|
||
config = {
|
||
users.users.nixos = {
|
||
isNormalUser = true;
|
||
password = "password123";
|
||
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||
packages = with pkgs; [
|
||
tmux
|
||
htop
|
||
tree
|
||
];
|
||
};
|
||
environment.systemPackages = with pkgs; [
|
||
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||
wget
|
||
];
|
||
|
||
};
|
||
} |