mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-26 06:02:34 -05:00
merge
This commit is contained in:
commit
7a710d1319
5 changed files with 28 additions and 1 deletions
19
flake.lock
generated
19
flake.lock
generated
|
|
@ -3195,7 +3195,8 @@
|
|||
"nvix": "nvix",
|
||||
"sops-nix": "sops-nix",
|
||||
"terranix": "terranix",
|
||||
"the-nest": "the-nest"
|
||||
"the-nest": "the-nest",
|
||||
"unstable-small": "unstable-small"
|
||||
}
|
||||
},
|
||||
"rust-overlay": {
|
||||
|
|
@ -3340,6 +3341,22 @@
|
|||
"repo": "the-nest",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"unstable-small": {
|
||||
"locked": {
|
||||
"lastModified": 1741241576,
|
||||
"narHash": "sha256-/mxmUVd+AE2bTmulNfM7yICocUvavlFQHcMYK67z3qI=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "ffe8d1b1030b5de6eba761102ee34b6e41d040ee",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-unstable-small",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
unstable-small.url = "github:nixos/nixpkgs/nixos-unstable-small";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
|
|
|||
|
|
@ -20,4 +20,5 @@
|
|||
module.hacking.enable = true;
|
||||
module.mudding.enable = true;
|
||||
software.keyd.enable = true;
|
||||
module.gaming.enable = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
inputs,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
|
|
@ -42,6 +43,9 @@
|
|||
else []
|
||||
);
|
||||
};
|
||||
overlays = [
|
||||
(final: prev: {frigate = inputs.unstable-small.legacyPackages.${prev.system}.frigate;})
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,5 +8,9 @@
|
|||
defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
lfs = {
|
||||
enable = true;
|
||||
skipSmudge = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue