nix-config-v2/flake.nix

81 lines
2.2 KiB
Nix
Raw Normal View History

2024-07-29 23:09:42 -05:00
{
2024-09-03 21:24:20 -05:00
description = "Wyatt's nix configuration suite";
2024-07-29 23:09:42 -05:00
inputs = {
2024-09-07 00:52:43 -05:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.4.1";
2024-09-07 00:52:43 -05:00
nixpkgs-darwin.url = "github:nixos/nixpkgs/nixpkgs-24.05-darwin";
2024-07-29 23:09:42 -05:00
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
2024-09-03 21:24:20 -05:00
inputs.nixpkgs.follows = "nixpkgs";
2024-07-29 23:09:42 -05:00
};
darwin = {
url = "github:lnl7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs-darwin";
};
};
outputs = inputs @ {
self,
nixpkgs,
nix-flatpak,
2024-07-29 23:09:42 -05:00
darwin,
home-manager,
...
}: let
2024-09-03 21:24:20 -05:00
userName = "wyatt";
userEmail = "wyatt@wyattjmiller.com";
2024-09-07 00:52:43 -05:00
extraSpecialArgs = {
inherit userName userEmail;
};
2024-07-29 23:09:42 -05:00
in {
2024-09-03 21:24:20 -05:00
# Primary laptop - MacBook Pro (2023, M3)
darwinConfigurations."sephiroth" = darwin.lib.darwinSystem {
system = "aarch64-darwin";
2024-09-07 00:52:43 -05:00
specialArgs = {
inherit userName userEmail;
hostname = "sephiroth";
};
2024-07-29 23:09:42 -05:00
modules = [
./modules/nix-core.nix
./modules/darwin/configuration.nix
./modules/darwin/apps.nix
2024-07-29 23:09:42 -05:00
./modules/host-users.nix
home-manager.darwinModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
2024-09-07 00:52:43 -05:00
home-manager.extraSpecialArgs = extraSpecialArgs;
2024-09-03 21:24:20 -05:00
home-manager.users.${userName} = import ./home;
2024-07-29 23:09:42 -05:00
}
];
};
2024-09-03 21:24:20 -05:00
# Primary desktop computer
nixosConfiguration."cloud" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
2024-09-07 00:52:43 -05:00
specialArgs = {
inherit userName userEmail;
hostname = "cloud";
};
2024-09-03 21:24:20 -05:00
modules = [
/etc/nixos/configuration.nix
./modules/nix-core.nix
./modules/nixos/configuration.nix
2024-09-03 21:24:20 -05:00
./modules/host-users.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
2024-09-07 00:52:43 -05:00
home-manager.extraSpecialArgs = extraSpecialArgs;
home-manager.users.${userName}.imports = [
nix-flatpak.homeManagerModules.nix-flatpak
./home
];
2024-09-03 21:24:20 -05:00
}
];
};
2024-07-29 23:09:42 -05:00
};
}