More nonsense not worth describing

This commit is contained in:
lulusilly 2025-09-01 00:32:34 -04:00
parent 6e81c396c4
commit 68d7df796e
12 changed files with 4 additions and 29 deletions

View file

@ -1,21 +0,0 @@
{
description = "Multi-machine Home Manager (Linux/macOS/NixOS)";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, ... }@inputs: {
homeConfigurations = {
mecca = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
./common.nix
./mecca/home.nix
];
};
};
}
}

View file

@ -8,24 +8,20 @@
stylix.inputs.nixpkgs.follows = "nixpkgs"; stylix.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = { self, nixpkgs, ... }@inputs: { outputs = { self, nixpkgs, ... }@inputs: {
/*
homeConfigurations = { homeConfigurations = {
mecca = home-manager.lib.homeManagerConfiguration { mecca = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
modules = [ modules = [
./common.nix ./hosts/common.nix
./mecca/home.nix ./hosts/mecca/home.nix
]; ];
}; };
}; };
*/
nixosConfigurations = { nixosConfigurations = {
mecca = nixpkgs.lib.nixosSystem { mecca = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = {inherit inputs;}; modules = [ specialArgs = {inherit inputs;}; modules = [
./mecca/configuration.nix ./hosts/mecca/configuration.nix
inputs.stylix.nixosModules.stylix inputs.stylix.nixosModules.stylix
]; ];
}; };
@ -33,7 +29,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = {inherit inputs;}; specialArgs = {inherit inputs;};
modules = [ modules = [
./syntheticnexus/configuration.nix ./hosts/syntheticnexus/configuration.nix
inputs.stylix.nixosModules.stylix inputs.stylix.nixosModules.stylix
]; ];
}; };

View file

View file

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

Before After
Before After