nix-config/flake.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

2022-02-23 12:40:21 +01:00
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
2023-02-03 17:40:49 +01:00
nixpkgs-stable.url = "nixpkgs/nixos-22.11";
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
};
};
}