From 941b7330d70f74f4c128d2ebc2916d13ce643233 Mon Sep 17 00:00:00 2001 From: logical-code Date: Tue, 8 Jul 2025 23:30:44 -0400 Subject: [PATCH] rename laptop --- flake.lock | 27 +++++++++++++++++++ flake.nix | 4 +-- hosts/{laptop => brandon-laptop}/default.nix | 0 .../hardware-configuration.nix | 0 4 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 flake.lock rename hosts/{laptop => brandon-laptop}/default.nix (100%) rename hosts/{laptop => brandon-laptop}/hardware-configuration.nix (100%) diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..084e06f --- /dev/null +++ b/flake.lock @@ -0,0 +1,27 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1751792365, + "narHash": "sha256-J1kI6oAj25IG4EdVlg2hQz8NZTBNYvIS0l4wpr9KcUo=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "1fd8bada0b6117e6c7eb54aad5813023eed37ccb", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix index f712581..641a25b 100644 --- a/flake.nix +++ b/flake.nix @@ -8,10 +8,10 @@ }: rec { # The output for your laptop build nixosConfigurations = { - laptop = nixpkgs.lib.nixosSystem { + brandon-laptop = nixpkgs.lib.nixosSystem { specialArgs = {inherit self inputs;}; modules = [ - ./hosts/laptop #individual config + ./hosts/brandon-laptop #individual config ./modules/desktop #share configs ]; }; diff --git a/hosts/laptop/default.nix b/hosts/brandon-laptop/default.nix similarity index 100% rename from hosts/laptop/default.nix rename to hosts/brandon-laptop/default.nix diff --git a/hosts/laptop/hardware-configuration.nix b/hosts/brandon-laptop/hardware-configuration.nix similarity index 100% rename from hosts/laptop/hardware-configuration.nix rename to hosts/brandon-laptop/hardware-configuration.nix