Add nixprstatus
Some checks are pending
pre-commit / pre-commit (push) Waiting to run

This commit is contained in:
Torjus Håkestad 2024-10-01 00:10:20 +02:00
parent d66a7d8c06
commit 2a6740c86c
2 changed files with 16 additions and 14 deletions

View File

@ -23,6 +23,10 @@
url = "git+https://git.t-juice.club/torjus/nix-packages?ref=master"; url = "git+https://git.t-juice.club/torjus/nix-packages?ref=master";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nixprstatus = {
url = "git+https://git.t-juice.club/torjus/nixprstatus?ref=master";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = outputs =
@ -31,6 +35,7 @@
nixpkgs, nixpkgs,
nixpkgs-master, nixpkgs-master,
nixpkgs-stable, nixpkgs-stable,
nixprstatus,
sops-nix, sops-nix,
ghettoptt, ghettoptt,
huecli, huecli,
@ -60,6 +65,14 @@
]; ];
forAllSystems = forAllSystems =
f: nixpkgs.lib.genAttrs allSystems (system: f { pkgs = import nixpkgs { inherit system; }; }); f: nixpkgs.lib.genAttrs allSystems (system: f { pkgs = import nixpkgs { inherit system; }; });
commonOverlays = [
overlay-stable
overlay-master
ghettoptt.overlays.default
huecli.overlays.default
nix-packages.overlays.default
nixprstatus.overlays.default
];
in in
{ {
nixosConfigurations = { nixosConfigurations = {
@ -79,13 +92,7 @@
( (
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
nixpkgs.overlays = [ nixpkgs.overlays = commonOverlays;
overlay-stable
overlay-master
ghettoptt.overlays.default
huecli.overlays.default
nix-packages.overlays.default
];
} }
) )
./hosts/magicman ./hosts/magicman
@ -106,13 +113,7 @@
( (
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
nixpkgs.overlays = [ nixpkgs.overlays = commonOverlays;
overlay-stable
overlay-master
ghettoptt.overlays.default
huecli.overlays.default
nix-packages.overlays.default
];
} }
) )
./hosts/gunter ./hosts/gunter

View File

@ -98,6 +98,7 @@ in
# Homemade shit # Homemade shit
ghettoptt ghettoptt
huecli huecli
nixprstatus
# Stuff with overrides # Stuff with overrides
# Btop # Btop