Fix impurity

This commit is contained in:
Dave Gallant
2024-02-19 21:36:21 -05:00
parent 9eb18c9f4b
commit ff55e655da
4 changed files with 13 additions and 11 deletions

View File

@@ -10,7 +10,13 @@
} @ inputs: {
nixosConfigurations = let
modulesDir = ./modules;
unstable = import nixpkgs-unstable {};
unstable = import nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
config.permittedInsecurePackages = [
"electron-25.9.0" # caused by obsidian
];
};
defaultModules = [
home-manager.nixosModules.home-manager
./modules/common/fonts.nix
@@ -71,7 +77,6 @@
];
in {
hephaestus = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit unstable;};
modules =
[