Compare commits
2 commits
31eefe44e6
...
1d5090762b
Author | SHA1 | Date | |
---|---|---|---|
1d5090762b | |||
2265ae8eac |
5 changed files with 6 additions and 3 deletions
|
@ -114,8 +114,7 @@
|
|||
# We define a NixOS configuration for a PC workstation.
|
||||
nixosConfigurations.cyclone = nixpkgs.lib.nixosSystem {
|
||||
modules = [
|
||||
./hosts/cyclone/configuration.nix
|
||||
./hosts/cyclone/hardware-configuration.nix
|
||||
./hosts/linux/cyclone/configuration.nix
|
||||
|
||||
vscode-server.nixosModules.default
|
||||
home-manager.nixosModules.home-manager
|
||||
|
@ -135,7 +134,7 @@
|
|||
darwinConfigurations."spotlights-macbook-air" = nix-darwin.lib.darwinSystem {
|
||||
modules = [
|
||||
# System-wide configuration
|
||||
./hosts/spotlights-macbook-air/configuration.nix
|
||||
./hosts/darwin/spotlights-macbook-air/configuration.nix
|
||||
# Our provided home-manager configuration
|
||||
home-manager.darwinModules.home-manager
|
||||
{
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
]
|
||||
|
||||
networking = {
|
||||
hostName = "cyclone";
|
||||
domain = "host.fox-int.cloud";
|
Loading…
Add table
Add a link
Reference in a new issue