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,7 +2,6 @@
{
documentation.nixos.includeAllModules = true;
documentation.nixos.options.warningsAreErrors = false;
/*
home-manager.users.darkkirb =
{
lib,
@ -16,5 +15,4 @@
json.enable = true;
};
};
*/
}

View file

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

View file

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

View file

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