427 current 2025-06-10 01:09:14 25.05.20250424.f771eb4 6.12.24 *

This commit is contained in:
2025-06-10 01:09:35 -04:00
parent 1140744966
commit 034af03888
3 changed files with 168 additions and 9 deletions

View File

@@ -8,6 +8,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
agenix.url = "github:ryantm/agenix";
emacs-overlay = {
url = "github:nix-community/emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
@@ -15,13 +20,16 @@
nixpkgs,
home-manager,
agenix,
emacs-overlay,
} @ inputs: let
baseModule = {
# imports = [
# home-manager.nixosModules.default
# ];
system.configurationRevision = nixpkgs.lib.mkIf (self ? rev) self.rev;
nixpkgs.overlays = [];
nixpkgs.overlays = [
inputs.emacs-overlay.overlay
];
};
in {
nixosConfigurations.thonkpad = nixpkgs.lib.nixosSystem {