nixos-config/flake.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

2022-06-17 15:00:08 +00:00
{
inputs = {
2022-06-18 17:48:25 +00:00
nixpkgs.url = github:NixOS/nixpkgs/nixos-22.05;
2022-06-17 15:00:08 +00:00
home-manager = {
url = github:nix-community/home-manager/release-22.05;
inputs.nixpkgs.follows = "nixpkgs";
};
};
2022-06-26 12:44:53 +00:00
outputs = inputs @ { self, nixpkgs, home-manager, ... }:
let
2022-06-17 15:00:08 +00:00
user = "mandlm";
2022-08-18 19:15:03 +00:00
theme = "dark"; # dark or light
2022-08-18 19:55:47 +00:00
buildMachineConfig = machineName: nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = inputs;
modules = [
./configuration.nix
./users.nix
./machines/${machineName}/configuration.nix
./machines/${machineName}/hardware-configuration.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit user theme; };
home-manager.users.${user} = {
imports = [ ./home-${user}.nix ];
};
}
];
};
2022-06-26 12:44:53 +00:00
in
2022-06-17 15:00:08 +00:00
{
2022-06-26 13:03:45 +00:00
nixosConfigurations = {
2022-08-18 19:55:47 +00:00
nixos-vm = buildMachineConfig ("nixos-vm");
apache = buildMachineConfig ("apache");
p330 = buildMachineConfig ("p330");
2022-06-17 15:00:08 +00:00
};
};
}