2022-02-23 12:40:21 +01:00
|
|
|
{
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
2023-07-26 11:57:46 +02:00
|
|
|
nixpkgs-stable.url = "nixpkgs/nixos-23.05";
|
2022-03-05 18:52:59 +01:00
|
|
|
|
2022-02-23 12:40:21 +01:00
|
|
|
home-manager = {
|
2022-03-05 18:52:59 +01:00
|
|
|
url = "github:nix-community/home-manager/master";
|
2022-02-23 12:40:21 +01:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
impermanence.url = "github:nix-community/impermanence";
|
2022-05-24 09:47:14 +02:00
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
2022-02-23 12:40:21 +01:00
|
|
|
};
|
2022-07-11 16:46:10 +02:00
|
|
|
|
2023-07-23 16:53:16 +02:00
|
|
|
outputs =
|
|
|
|
{ self
|
|
|
|
, nixpkgs
|
|
|
|
, nixpkgs-stable
|
|
|
|
, nixos-hardware
|
|
|
|
, home-manager
|
|
|
|
, impermanence
|
|
|
|
}@inputs: {
|
2022-03-05 18:52:59 +01:00
|
|
|
nixosConfigurations = {
|
|
|
|
trantor = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
specialArgs = {
|
|
|
|
# unstablePkgs = nixpkgs-unstable.legacyPackages."x86_64-linux";
|
2022-03-05 19:54:51 +01:00
|
|
|
stablePkgs = nixpkgs-stable.legacyPackages."x86_64-linux";
|
2022-03-05 18:52:59 +01:00
|
|
|
impermanence = impermanence;
|
|
|
|
};
|
2022-02-23 12:40:21 +01:00
|
|
|
|
2022-03-05 18:52:59 +01:00
|
|
|
modules = [
|
|
|
|
./trantor.nix
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
impermanence.nixosModules.impermanence
|
|
|
|
];
|
|
|
|
};
|
2022-02-23 12:40:21 +01:00
|
|
|
|
2022-03-05 18:52:59 +01:00
|
|
|
capibara = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
specialArgs = {
|
|
|
|
# unstablePkgs = nixpkgs-unstable.legacyPackages."x86_64-linux";
|
|
|
|
stablePkgs = nixpkgs-stable.legacyPackages."x86_64-linux";
|
|
|
|
impermanence = impermanence;
|
|
|
|
};
|
2022-02-23 12:40:21 +01:00
|
|
|
|
2022-03-05 18:52:59 +01:00
|
|
|
modules = [
|
|
|
|
./capibara.nix
|
2022-05-24 09:47:14 +02:00
|
|
|
nixos-hardware.nixosModules.lenovo-thinkpad-x230
|
2022-03-05 18:52:59 +01:00
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
impermanence.nixosModules.impermanence
|
|
|
|
];
|
|
|
|
};
|
2022-02-23 12:40:21 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|