Compare commits

...

3 commits

Author SHA1 Message Date
43e49e9b3c add hyfetch
All checks were successful
Hydra packages.riscv64-linux.package-updater Hydra build #25896 of nixos-config:pr618:packages.riscv64-linux.package-updater
2024-11-18 19:29:08 +01:00
6ba20a0614 disable home-manager documentation 2024-11-18 11:12:02 +01:00
be0b752ca2 fix eval 2024-11-18 11:09:31 +01:00
5 changed files with 19 additions and 9 deletions

View file

@ -2,7 +2,8 @@
{ {
documentation.nixos.includeAllModules = true; documentation.nixos.includeAllModules = true;
documentation.nixos.options.warningsAreErrors = false; documentation.nixos.options.warningsAreErrors = false;
home-manager.users.darkkirb = /*
home-manager.users.darkkirb =
{ {
lib, lib,
config, config,
@ -15,4 +16,5 @@
json.enable = true; json.enable = true;
}; };
}; };
*/
} }

View file

@ -140,13 +140,9 @@
config.allowUnfree = true; config.allowUnfree = true;
overlays = overlays =
[ [
( (_: _: {
_: _: inputs = inputs';
inputs' })
// {
inputs = inputs';
}
)
self.overlays.default self.overlays.default
] ]
++ ( ++ (

View file

@ -6,6 +6,7 @@
self, self,
rust-overlay, rust-overlay,
nix-vscode-extensions, nix-vscode-extensions,
inputs,
... ...
}: }:
with lib; with lib;
@ -28,6 +29,9 @@ with lib;
if !inTester then if !inTester then
{ {
nixpkgs.overlays = [ nixpkgs.overlays = [
(_: _: {
inherit inputs;
})
self.overlays.default self.overlays.default
(import rust-overlay) (import rust-overlay)
nix-vscode-extensions.overlays.default nix-vscode-extensions.overlays.default

View file

@ -1,6 +1,14 @@
_: { { ... }:
{
imports = [ imports = [
./fish ./fish
./tmux ./tmux
]; ];
home-manager.users.root.imports = [
./home-manager.nix
];
home-manager.users.darkkirb.imports = [
./home-manager.nix
];
} }

View file