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 = {
package = pkgs.nixVersions.nix_2_22;
# Edit nix.conf
settings = {
# Store

View file

@ -1,6 +1,5 @@
{
config,
nix-eval-jobs,
nix-fast-build,
pkgs,
...
@ -8,16 +7,12 @@
inherit (config.vars) mainUser;
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-eval-jobs = nix-eval-jobsPkg;
nix-eval-jobs =
pkgs.nix-eval-jobs
// {
nix = config.nix.package;
};
};
in {
services.nix-serve = {

Binary file not shown.

BIN
flake.nix

Binary file not shown.

View file

@ -9,6 +9,16 @@ let
# Inputs
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 {
owner = "matt1432";
repo = "nurl";
@ -83,16 +93,6 @@ let
owner = "matt1432";
repo = "Minix";
};
nix-eval-jobs = mkDep {
owner = "nix-community";
repo = "nix-eval-jobs";
};
nix-fast-build = mkDep {
owner = "Mic92";
repo = "nix-fast-build";
};
};
nosInputs = {

View file

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

View file

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