38 lines
747 B
Nix
38 lines
747 B
Nix
# This is your system's configuration file.
|
|
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
|
|
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
system,
|
|
dots,
|
|
user,
|
|
hm,
|
|
...
|
|
}: {
|
|
# You can import other NixOS modules here
|
|
imports = [
|
|
./hardware.nix
|
|
];
|
|
|
|
custom = {
|
|
keyd.enable = true;
|
|
displaymanager.enable = true;
|
|
_1password.enable = true;
|
|
audio.enable = true;
|
|
bluetooth.enable = true;
|
|
};
|
|
|
|
networking.hostName = "pickwick";
|
|
time.timeZone = "America/Chicago";
|
|
|
|
users.users = {
|
|
${user} = {
|
|
initialPassword = "abc123";
|
|
isNormalUser = true;
|
|
openssh.authorizedKeys.keys = [];
|
|
extraGroups = ["wheel" "video" "audio" "networkmanager"];
|
|
};
|
|
};
|
|
}
|