oizys/configuration.nix

24 lines
517 B
Nix
Raw Normal View History

2020-10-24 22:55:15 -05:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
2020-11-08 01:01:15 -06:00
{ config, pkgs, lib, modulesPath, inputs, ... }:
2020-10-24 22:55:15 -05:00
{
imports = [
./hardware-configuration.nix
];
services.sshd.enable = true;
networking.hostName = "mysystem";
2020-11-08 01:01:15 -06:00
nixpkgs.overlays = [ inputs.nur.overlay ];
environment.systemPackages = with pkgs; [
pkgs.nur.repos.mic92.hello-nur
];
2020-10-24 22:55:15 -05:00
}