28 lines
406 B
Nix
28 lines
406 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
./gui.nix
|
|
./nix.nix
|
|
./ssh.nix
|
|
];
|
|
|
|
config = {
|
|
users.users."riley" = {
|
|
|
|
shell = pkgs.bash;
|
|
|
|
isNormalUser = true;
|
|
extraGroups = ["wheel"];
|
|
packages = [ pkgs.helix pkgs.neovim ];
|
|
|
|
};
|
|
|
|
time.timeZone = "Europe/Amsterdam";
|
|
environment.systemPackages = (import ../env.nix pkgs);
|
|
|
|
services.earlyoom.enable = true;
|
|
};
|
|
|
|
}
|