mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-12 11:04:02 -06:00
Delete config.nix
This commit is contained in:
parent
e7e3cb1812
commit
7ce29233d4
1 changed files with 0 additions and 47 deletions
47
config.nix
47
config.nix
|
@ -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;
|
|
||||||
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue