54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{
|
|
description = "Evie's machine configurations";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
home-manager,
|
|
}: {
|
|
nixosConfigurations = {
|
|
Legion = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
home-manager.nixosModules.home-manager
|
|
./hosts/Legion/configuration.nix
|
|
./common.nix
|
|
./locales/en_GB.nix
|
|
./services/Legion.nix
|
|
];
|
|
};
|
|
N0245 = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
home-manager.nixosModules.home-manager
|
|
./hosts/N0245/configuration.nix
|
|
./common.nix
|
|
./hardware/audio.nix
|
|
./hardware/bluetooth.nix
|
|
./locales/en_GB.nix
|
|
./wm/sway.nix
|
|
./services/syncthing/N0245.nix
|
|
];
|
|
};
|
|
};
|
|
homeConfigurations = {
|
|
"tux" = home-manager.lib.homeManagerConfiguration {
|
|
pkgs = nixpkgs.legacyPackages."aarch64-darwin";
|
|
modules = [./hosts/Monarch/home.nix];
|
|
};
|
|
"xenia" = home-manager.lib.homeManagerConfiguration {
|
|
pkgs = nixpkgs.legacyPackages."aarch64-linux";
|
|
modules = [./hosts/Northstar/home.nix];
|
|
};
|
|
};
|
|
};
|
|
}
|