linuxware/flake.nix

37 lines
847 B
Nix
Raw Normal View History

2023-11-05 04:53:31 -03:00
{
description = "NixOS System Flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2023-11-05 04:53:31 -03:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
2024-07-11 04:53:41 -03:00
{ home-manager, nixpkgs, ... }@inputs:
let
system = "x86_64-linux";
2024-07-11 04:53:41 -03:00
pkgs = nixpkgs.legacyPackages.${system};
in
{
2024-04-11 20:02:59 -03:00
nixosConfigurations."nixos" =
let
specialArgs = inputs;
2024-07-11 04:53:41 -03:00
modules = [ ./nixos.nix ];
2024-04-11 20:02:59 -03:00
in
nixpkgs.lib.nixosSystem { inherit system specialArgs modules; };
2024-07-11 04:53:41 -03:00
homeConfigurations.wizardlink = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = inputs;
modules = [ ./home-manager.nix ];
};
formatter."${system}" = pkgs.nixfmt-rfc-style;
};
2023-11-05 04:53:31 -03:00
}