panacea/flake.nix

73 lines
1.9 KiB
Nix
Raw Normal View History

2021-08-08 20:56:16 +02:00
{
description = "System configuration for panacea";
2021-11-24 23:42:09 +01:00
nixConfig = {
extra-substituters =
2021-12-07 10:53:24 +01:00
"https://cachix.cachix.org https://nix-community.cachix.org";
extra-trusted-public-keys = ''
cachix.cachix.org-1:eWNHQldwUO7G2VkjpnjDbWwy4KQ/HNxht7H4SSoMckM=
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs='';
2021-11-24 23:42:09 +01:00
};
2021-08-08 20:56:16 +02:00
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
nixos-hardware.url = "github:NixOS/nixos-hardware";
2022-07-12 14:54:19 +02:00
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-01-29 13:28:28 +01:00
cyrus-sasl-xoauth2 = {
url = "github:robn/sasl2-oauth";
flake = false;
};
nix-index-database = {
url = "github:Mic92/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-01-08 03:06:19 +01:00
lanzaboote = {
url = "github:nix-community/lanzaboote/v0.3.0";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-03-29 13:46:58 +02:00
local-bitwig = {
url = "path:/home/coolneng/Projects/panacea/assets/bitwig";
flake = false;
};
2021-08-08 20:56:16 +02:00
};
outputs = { self, nixpkgs, ... }@inputs:
2021-08-08 20:56:16 +02:00
let
system = "x86_64-linux";
2023-09-03 01:39:26 +02:00
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [
(final: prev: {
emacs-vterm =
((pkgs.emacsPackagesFor pkgs.emacs29-pgtk).emacsWithPackages
2023-09-11 21:50:37 +02:00
(epkgs: with epkgs; [ vterm mu4e ]));
2023-09-03 01:39:26 +02:00
})
];
};
2021-08-08 20:56:16 +02:00
lib = nixpkgs.lib;
2021-10-17 20:56:51 +02:00
in {
nixosConfigurations.panacea = lib.nixosSystem {
inherit system;
modules = [
(import ./configuration.nix)
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-e14-amd
inputs.agenix.nixosModules.age
inputs.nix-index-database.nixosModules.nix-index
inputs.lanzaboote.nixosModules.lanzaboote
];
2023-09-03 01:39:26 +02:00
specialArgs = {
inherit inputs;
inherit pkgs;
};
2021-08-10 14:19:36 +02:00
};
2021-10-17 20:56:51 +02:00
};
2021-08-08 20:56:16 +02:00
}