23 lines
464 B
Nix
23 lines
464 B
Nix
|
{ config, lib, inputs, outputs, pkgs, system, timeZone, ... }:
|
||
|
let
|
||
|
userName = "nate";
|
||
|
fullName = "Nate Anderson";
|
||
|
email = "n8r@tuta.io";
|
||
|
hostName = "winmax";
|
||
|
desktop = "sway";
|
||
|
gaming = true;
|
||
|
in
|
||
|
{
|
||
|
imports = [
|
||
|
./desktop-configuration.nix
|
||
|
./nixos/hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
deskCfg = {
|
||
|
userName = userName;
|
||
|
hostName = hostName;
|
||
|
de = desktop;
|
||
|
installGaming = gaming;
|
||
|
};
|
||
|
}
|