mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
23 lines
622 B
Nix
23 lines
622 B
Nix
{
|
|
description = "Snowflakes are fractals";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
stylix.url = "github:danth/stylix";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager, stylix }: {
|
|
nixosConfigurations.snowfire = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [ ./system/configuration.nix ];
|
|
};
|
|
|
|
homeConfigurations."emmet" = home-manager.lib.homeManagerConfiguration {
|
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
modules = [ stylix.homeManagerModules.stylix ./user/home.nix ];
|
|
};
|
|
|
|
};
|
|
}
|