From 7ce29233d4d5c5c760d48820ec8a9602857f25ce Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 9 May 2022 15:32:34 +0000 Subject: [PATCH] Delete config.nix --- config.nix | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 config.nix diff --git a/config.nix b/config.nix deleted file mode 100644 index 656af37..0000000 --- a/config.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ config, pkgs, ... }: - -{ - # Import other configuration modules - # (hardware-configuration.nix is autogenerated upon installation) - # paths in nix expressions are always relative the file which defines them - imports = - [ - ./hardware-configuration.nix - ]; - - boot.loader = { - systemd-boot.enable = true; - }; - - # Name your host machine - networking.hostName = "NixOS-VM"; - - # Set your time zone. - time.timeZone = "America/Denver"; - - # Enter keyboard layout - services.xserver.layout = "us"; - - # Define user accounts - users.extraUsers = - { - aaronh = - { - extraGroups = [ "wheel" "networkmanager" ]; - isNormalUser = true; - }; - }; - - # Install some packages - environment.systemPackages = - with pkgs; - [ - ddate - testdisk - fish - ]; - - # Enable the OpenSSH daemon - services.openssh.enable = true; - -}