Delete config-pantheon.nix

This commit is contained in:
Aaron Honeycutt 2022-05-09 15:32:20 +00:00
parent 020d90f38f
commit 3c9f52d149

View file

@ -1,53 +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 =
{
home = "/home/aaronh";
extraGroups = [ "wheel" "networkmanager" ];
isNormalUser = true;
};
};
# Install some packages
environment.systemPackages =
with pkgs;
[
thunderbird
firefox
fish
];
# Enable the OpenSSH daemon
services.openssh.enable = true;
# Pantheon
services.xserver.enable = true;
services.xserver.desktopManager.pantheon.enable = true;
}