feat: nix -> lix
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-07-23 21:40:13 -04:00
parent 92398d5cbf
commit 5ad37a0439
7 changed files with 17 additions and 23 deletions

View file

@ -31,8 +31,6 @@
}; };
nix = { nix = {
package = pkgs.nixVersions.nix_2_22;
# Edit nix.conf # Edit nix.conf
settings = { settings = {
# Store # Store

View file

@ -1,6 +1,5 @@
{ {
config, config,
nix-eval-jobs,
nix-fast-build, nix-fast-build,
pkgs, pkgs,
... ...
@ -8,16 +7,12 @@
inherit (config.vars) mainUser; inherit (config.vars) mainUser;
inherit (config.sops) secrets; inherit (config.sops) secrets;
nix-eval-jobsPkg =
nix-eval-jobs.packages.${pkgs.system}.default.override {
nix = config.nix.package;
}
// {
nix = config.nix.package;
};
nix-fast-buildPkg = nix-fast-build.packages.${pkgs.system}.nix-fast-build.override { nix-fast-buildPkg = nix-fast-build.packages.${pkgs.system}.nix-fast-build.override {
nix-eval-jobs = nix-eval-jobsPkg; nix-eval-jobs =
pkgs.nix-eval-jobs
// {
nix = config.nix.package;
};
}; };
in { in {
services.nix-serve = { services.nix-serve = {

Binary file not shown.

BIN
flake.nix

Binary file not shown.

View file

@ -9,6 +9,16 @@ let
# Inputs # Inputs
nixTools = { nixTools = {
lix-module = mkDep {
type = "git";
url = "https://git.lix.systems/lix-project/nixos-module";
};
nix-fast-build = mkDep {
owner = "Mic92";
repo = "nix-fast-build";
};
nurl = mkDep { nurl = mkDep {
owner = "matt1432"; owner = "matt1432";
repo = "nurl"; repo = "nurl";
@ -83,16 +93,6 @@ let
owner = "matt1432"; owner = "matt1432";
repo = "Minix"; repo = "Minix";
}; };
nix-eval-jobs = mkDep {
owner = "nix-community";
repo = "nix-eval-jobs";
};
nix-fast-build = mkDep {
owner = "Mic92";
repo = "nix-fast-build";
};
}; };
nosInputs = { nosInputs = {

View file

@ -17,6 +17,7 @@
inputs.grim-hyprland.overlays.default inputs.grim-hyprland.overlays.default
inputs.jovian.overlays.default inputs.jovian.overlays.default
inputs.nixpkgs-wayland.overlays.default inputs.nixpkgs-wayland.overlays.default
inputs.lix-module.overlays.default
]; ];
}; };

View file

@ -12,7 +12,7 @@ in
mkIf cfg.isTouchscreen { mkIf cfg.isTouchscreen {
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
plugins = [ plugins = [
(hyprgrass.packages.${pkgs.system}.default.overrideAttrs (o:{ (hyprgrass.packages.${pkgs.system}.default.overrideAttrs (o: {
nativeBuildInputs = o.nativeBuildInputs ++ [pkgs.meson]; nativeBuildInputs = o.nativeBuildInputs ++ [pkgs.meson];
})) }))
]; ];