nixos/modules/common/default.nix
2024-05-18 17:32:15 -04:00

28 lines
501 B
Nix

{ config, lib, pkgs, ...}:
{
imports = [
./utilities
];
options = {
user = lib.mkOption {
type = lib.types.str;
description = "Primary user of the system";
};
fullName = lib.mkOption {
type = lib.types.str;
description = "Puny Hooman readable name of the user";
};
};
config =
let
stateVersion = "23.11";
in
{
environment.systemPackages = with pkgs; [
vim
wget
curl
vscode
];
};
}