nix-configs/flake.nix

52 lines
1.7 KiB
Nix
Raw Normal View History

2022-08-02 07:55:12 +00:00
{
description = "home manager config apparently";
inputs = {
2022-10-02 15:39:04 +00:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
2022-08-02 07:55:12 +00:00
home-manager = {
url = "github:nix-community/home-manager";
2022-10-02 15:39:04 +00:00
inputs.nixpkgs.follows = "nixpkgs";
2022-08-12 10:14:32 +00:00
};
2022-09-01 07:03:08 +00:00
nixos-hardware.url = "github:kekrby/nixos-hardware";
2022-10-02 15:39:04 +00:00
mac-brcm-fw = {
url = "path:./mac-brcm-fw";
flake = false;
};
2022-08-02 07:55:12 +00:00
};
2022-10-02 15:39:04 +00:00
outputs = { self, nixpkgs, home-manager, nixos-hardware, mac-brcm-fw, ... }: {
2022-08-02 07:55:12 +00:00
nixosConfigurations = {
monosodium-glutamate-g = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
2022-08-31 20:49:48 +00:00
./monosodium-glutamate-g/configuration.nix
2022-08-02 07:55:12 +00:00
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
2022-08-12 10:14:32 +00:00
home-manager.users.jade = { nixosConfig, pkgs, ... }: {
home.sessionVariables.TZ = nixosConfig.time.timeZone;
home.stateVersion = "${nixosConfig.system.stateVersion}";
};
}
2022-08-02 07:55:12 +00:00
];
};
2022-08-31 20:49:48 +00:00
potatobook-g = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
2022-10-02 15:39:04 +00:00
./mac-brcm-fw
2022-08-31 20:49:48 +00:00
./potatobook-g/configuration.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.jade = { nixosConfig, pkgs, ... }: {
home.sessionVariables.TZ = nixosConfig.time.timeZone;
home.stateVersion = "${nixosConfig.system.stateVersion}";
};
}
nixos-hardware.nixosModules.apple-t2
];
};
2022-08-02 07:55:12 +00:00
};
};
}