Compare commits

..

No commits in common. "43e49e9b3c37f7d25c21294b8c2aba7cc5f55d35" and "762f86b43995903f7eda33c431b30b19ac4d0a68" have entirely different histories.

5 changed files with 9 additions and 19 deletions

View file

@ -2,8 +2,7 @@
{ {
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,
@ -16,5 +15,4 @@
json.enable = true; json.enable = true;
}; };
}; };
*/
} }

View file

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

View file

@ -6,7 +6,6 @@
self, self,
rust-overlay, rust-overlay,
nix-vscode-extensions, nix-vscode-extensions,
inputs,
... ...
}: }:
with lib; with lib;
@ -29,9 +28,6 @@ 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,14 +1,6 @@
{ ... }: _: {
{
imports = [ imports = [
./fish ./fish
./tmux ./tmux
]; ];
home-manager.users.root.imports = [
./home-manager.nix
];
home-manager.users.darkkirb.imports = [
./home-manager.nix
];
} }