mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
update dev vm configs
This commit is contained in:
parent
09834ff049
commit
485c8f899a
4 changed files with 12 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
{
|
{
|
||||||
sconfig.profile = "server";
|
sconfig.profile = "server";
|
||||||
users.users.root.password = "toor";
|
services.getty.autologinUser = "root";
|
||||||
}
|
}
|
6
hosts/dev-gui/configuration.nix
Normal file
6
hosts/dev-gui/configuration.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ config, lib, ... }:
|
||||||
|
{
|
||||||
|
sconfig.profile = "desktop";
|
||||||
|
sconfig.gnome = true;
|
||||||
|
services.getty.autologinUser = "root";
|
||||||
|
}
|
5
hosts/dev-gui/default.nix
Normal file
5
hosts/dev-gui/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
pkgs = "unstable";
|
||||||
|
system = "x86_64-linux";
|
||||||
|
hardware = "qemu";
|
||||||
|
}
|
Loading…
Reference in a new issue