nix-da/flake.nix
2024-05-16 03:58:46 +09:00

34 lines
745 B
Nix

{
description = "Nydragon's configuration'";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ self, nixpkgs, home-manager }:
let
inherit (self) outputs;
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
lib = nixpkgs.lib;
in {
nixosConfigurations = {
xps9510 = lib.nixosSystem {
inherit system;
modules = [ ./hosts/xps9510/configuration.nix ];
specialArgs = { inherit inputs outputs system pkgs; };
};
};
};
}