nixos/flake.nix

44 lines
936 B
Nix
Raw Normal View History

2023-08-19 23:40:25 +02:00
{
2023-08-20 00:48:31 +02:00
description = "NixOS configuration of MrDev023";
nixConfig = {
experimental-features = [ "nix-command" "flakes" ];
};
2023-08-19 23:40:25 +02:00
inputs = {
2024-02-17 14:56:18 +01:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
2023-08-19 23:40:25 +02:00
};
2023-08-20 00:48:31 +02:00
outputs = inputs@{
self,
nixpkgs,
home-manager,
...
}: {
2023-08-19 23:40:25 +02:00
nixosConfigurations = {
2023-08-20 00:12:51 +02:00
nixos-test = nixpkgs.lib.nixosSystem {
2023-08-20 00:00:27 +02:00
system = "x86_64-linux";
2023-08-20 00:48:31 +02:00
2023-08-20 00:00:27 +02:00
modules = [
2023-08-20 00:48:31 +02:00
./hosts/nixos-test
2023-08-20 00:11:19 +02:00
home-manager.nixosModules.home-manager
(import ./home/common-home-manager.nix { inherit inputs; })
2023-08-20 00:00:27 +02:00
];
2023-08-19 23:40:25 +02:00
};
2024-02-02 21:07:29 +01:00
perso-laptop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/perso-laptop
home-manager.nixosModules.home-manager
(import ./home/common-home-manager.nix { inherit inputs; })
2024-02-02 21:07:29 +01:00
];
};
2023-08-19 23:40:25 +02:00
};
};
2024-02-02 21:07:29 +01:00
}