mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-12-15 10:01:39 +01:00
nix: use flake
This commit is contained in:
parent
84660083f9
commit
397c48ae43
8 changed files with 266 additions and 20 deletions
61
flake.nix
Normal file
61
flake.nix
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
description = "A wip universal Linux settings application.";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
flake-parts = {
|
||||
url = "github:hercules-ci/flake-parts";
|
||||
inputs.nixpkgs-lib.follows = "nixpkgs";
|
||||
};
|
||||
rust-overlay = {
|
||||
url = "https://github.com/oxalica/rust-overlay/archive/master.tar.gz";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs @ { self, flake-parts, ... }:
|
||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||
systems = [ "x86_64-linux" "aarch64-linux" ];
|
||||
|
||||
perSystem =
|
||||
{ config
|
||||
, self'
|
||||
, inputs'
|
||||
, pkgs
|
||||
, system
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
_module.args.pkgs = import self.inputs.nixpkgs {
|
||||
inherit system;
|
||||
overlays = [
|
||||
(import
|
||||
inputs.rust-overlay
|
||||
)
|
||||
];
|
||||
};
|
||||
devShells.default = pkgs.mkShell {
|
||||
inputsFrom = builtins.attrValues self'.packages;
|
||||
packages = with pkgs; [
|
||||
(rust-bin.selectLatestNightlyWith
|
||||
(toolchain: toolchain.default))
|
||||
];
|
||||
};
|
||||
|
||||
packages =
|
||||
let
|
||||
lockFile = ./Cargo.lock;
|
||||
in
|
||||
rec {
|
||||
reset = pkgs.callPackage ./nix/default.nix { inherit inputs lockFile; };
|
||||
default = reset;
|
||||
};
|
||||
};
|
||||
flake = _: rec {
|
||||
nixosModules.home-manager = homeManagerModules.default;
|
||||
homeManagerModules = rec {
|
||||
reset = import ./nix/hm.nix inputs.self;
|
||||
default = reset;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue