nix-da/flake.nix
Nydragon d89eb790b1
init: flakeify the majority of my config
Remaining point of focus is making the sway config working properly
2024-05-13 15:34:22 +09:00

40 lines
948 B
Nix

{
description = "Nydragon's configuration'";
inputs = {
nixpkgs = { url = "github:nixos/nixpkgs"; };
nixpkgs-unstable = { url = "github:nixos/nixpkgs?ref=nixos-unstable"; };
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ self, nixpkgs, nixpkgs-unstable, home-manager }:
let
inherit (self) outputs;
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
unstable = import nixpkgs-unstable {
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 unstable; };
};
};
};
}