57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
description = "master home systems config";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
flake-parts = {
|
|
url = "github:hercues-ci/flake-parts";
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
};
|
|
|
|
eww = {
|
|
url = "github:elkowar/eww";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.rust-overlay.follows = "rust-overlay";
|
|
};
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
helix = {
|
|
url = "github:helix-editor/helix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.parts.follows = "flake-parts";
|
|
};
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
|
|
rust-overlay = {
|
|
url = "github:oxalica/rust-overlay";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
};
|
|
|
|
};
|
|
|
|
outputs = inputs@{ flake-parts, ... }:
|
|
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
|
|
|
|
systems = ["x86_64-linux"];
|
|
|
|
imports = [
|
|
|
|
];
|
|
|
|
perSystem = {config, self', inputs', pkgs, system, ...}: {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|