Compare commits

..

No commits in common. "1d5090762b9c65d3740a75b9aa97978f804110ef" and "31eefe44e641ffff21f78d2482c790f2e13dc96e" have entirely different histories.

5 changed files with 3 additions and 6 deletions

View file

@ -114,7 +114,8 @@
# We define a NixOS configuration for a PC workstation.
nixosConfigurations.cyclone = nixpkgs.lib.nixosSystem {
modules = [
./hosts/linux/cyclone/configuration.nix
./hosts/cyclone/configuration.nix
./hosts/cyclone/hardware-configuration.nix
vscode-server.nixosModules.default
home-manager.nixosModules.home-manager
@ -134,7 +135,7 @@
darwinConfigurations."spotlights-macbook-air" = nix-darwin.lib.darwinSystem {
modules = [
# System-wide configuration
./hosts/darwin/spotlights-macbook-air/configuration.nix
./hosts/spotlights-macbook-air/configuration.nix
# Our provided home-manager configuration
home-manager.darwinModules.home-manager
{

View file

@ -1,10 +1,6 @@
{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
]
networking = {
hostName = "cyclone";
domain = "host.fox-int.cloud";