fixup, splitting packages into separate repo

This commit is contained in:
TheK0tYaRa 2026-02-24 01:29:18 +02:00
parent 11141465a4
commit 076d61604c
18 changed files with 220 additions and 1577 deletions

View file

@ -1,6 +1,10 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
mypkgs = {
url = "ssh://forgejo@10.0.0.64/thek0tyara/nixpkgs-extension.git";
inputs.nixpkgs.follows = "nixpkgs";
};
ragenix.url = "github:yaxitech/ragenix/2025.03.09";
niri.url = "github:YaLTeR/niri/v25.11";
home-manager = {
@ -20,6 +24,7 @@
inputs@{
# self,
nixpkgs,
mypkgs,
ragenix,
home-manager,
ghostty,
@ -54,8 +59,9 @@
};
nixpkgs.overlays = [
intel-hw.overlays.default
(import ./custom/overlays/default.nix)
(import ./custom/overlays/override.nix)
# (import ./custom/overlays/default.nix)
mypkgs.overlays.default
(import ./custom/override.nix)
];
# boot.kernelPatches = [
# {
@ -156,15 +162,17 @@
enable = true;
};
sudo = {
extraRules = [{
commands = [
{
command = "/run/current-system/sw/bin/nix";
options = [ "NOPASSWD" ];
}
];
groups = [ "wheel" ];
}];
extraRules = [
{
commands = [
{
command = "/run/current-system/sw/bin/nix";
options = [ "NOPASSWD" ];
}
];
groups = [ "wheel" ];
}
];
};
};
# virtualisation.qemu = {