2023-05-06 23:02:14 +05:30
|
|
|
{
|
2023-05-07 19:35:52 +05:30
|
|
|
description = "Snowflakes are fractals";
|
2023-05-06 23:02:14 +05:30
|
|
|
|
2023-05-07 19:35:52 +05:30
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
|
|
stylix.url = "github:danth/stylix";
|
|
|
|
};
|
2023-05-06 23:02:14 +05:30
|
|
|
|
2023-05-07 19:35:52 +05:30
|
|
|
outputs = { self, nixpkgs, home-manager, stylix }: {
|
|
|
|
nixosConfigurations.snowfire = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [ ./system/configuration.nix ];
|
|
|
|
};
|
2023-05-06 23:02:14 +05:30
|
|
|
|
2023-05-07 19:35:52 +05:30
|
|
|
homeConfigurations."emmet" = home-manager.lib.homeManagerConfiguration {
|
|
|
|
modules = [ stylix.homeManagerModules.stylix ./user/home.nix ];
|
|
|
|
};
|
2023-05-06 23:02:14 +05:30
|
|
|
|
|
|
|
};
|
|
|
|
}
|