From 76beaa5f6a75faea0e541022f4fe000fb2b4718c Mon Sep 17 00:00:00 2001 From: Julian Sutter Date: Sat, 25 May 2024 16:56:54 +0000 Subject: [PATCH] labrizor --- flake.nix | 4 ++-- systems/{labby.nix => labrizor.nix} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename systems/{labby.nix => labrizor.nix} (95%) diff --git a/flake.nix b/flake.nix index b1fa041..515804f 100755 --- a/flake.nix +++ b/flake.nix @@ -41,11 +41,11 @@ # ./modules/3dprinting.nix ]; }; - labby = nixpkgs.lib.nixosSystem { + labrizor = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ./systems/common.nix - ./systems/labby.nix + ./systems/labrizor.nix ./users/jsutter.nix ./users/isutter.nix ./users/aksutter.nix diff --git a/systems/labby.nix b/systems/labrizor.nix similarity index 95% rename from systems/labby.nix rename to systems/labrizor.nix index 9cd4d4f..7b6ac05 100755 --- a/systems/labby.nix +++ b/systems/labrizor.nix @@ -1,7 +1,7 @@ { config, lib, pkgs, modulesPath, ... }: { - networking.hostName = "labby"; + networking.hostName = "labrizor"; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ];