rename laptop

This commit is contained in:
logical-code 2025-07-08 23:30:44 -04:00
parent 660ac2ee95
commit 941b7330d7
4 changed files with 29 additions and 2 deletions

27
flake.lock generated Normal file
View file

@ -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
}

View file

@ -8,10 +8,10 @@
}: rec { }: rec {
# The output for your laptop build # The output for your laptop build
nixosConfigurations = { nixosConfigurations = {
laptop = nixpkgs.lib.nixosSystem { brandon-laptop = nixpkgs.lib.nixosSystem {
specialArgs = {inherit self inputs;}; specialArgs = {inherit self inputs;};
modules = [ modules = [
./hosts/laptop #individual config ./hosts/brandon-laptop #individual config
./modules/desktop #share configs ./modules/desktop #share configs
]; ];
}; };