18 lines
344 B
Nix
18 lines
344 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking.hostName = "nova";
|
|
|
|
imports = [
|
|
./hardware.nix
|
|
../users/alt.nix
|
|
../users/guest.nix
|
|
../system
|
|
../system/desktop
|
|
../system/desktop/gnome.nix
|
|
# ../system/desktop/cast.nix
|
|
../system/desktop/ergodox.nix
|
|
../system/desktop/steam.nix
|
|
../system/desktop/yubikey.nix
|
|
];
|
|
}
|