nixos/flake.nix

49 lines
1 KiB
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";
2023-08-19 23:40:25 +02:00
inputs = {
2024-02-17 14:56:18 +01:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2024-02-17 18:20:01 +01:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-02-19 20:17:01 +01:00
2024-04-04 15:19:40 +02:00
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.4.1";
2023-08-19 23:40:25 +02:00
};
2023-08-20 00:48:31 +02:00
outputs = inputs@{
self,
nixpkgs,
home-manager,
2024-02-19 20:17:01 +01:00
nix-flatpak,
2023-08-20 00:48:31 +02:00
...
2024-04-08 00:06:14 +02:00
}:
let
common-modules = [
home-manager.nixosModules.home-manager
(import ./home/common-home-manager.nix { inherit inputs; })
];
in {
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
2024-04-08 00:06:14 +02:00
modules = [ ./hosts/nixos-test ] ++ common-modules;
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";
2024-04-08 00:06:14 +02:00
modules = [ ./hosts/perso-laptop ] ++ common-modules;
2024-02-02 21:07:29 +01:00
};
2024-02-19 19:34:50 +01:00
perso-desktop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
2024-04-08 00:06:14 +02:00
modules = [ ./hosts/perso-desktop ] ++ common-modules;
2024-02-19 19:34:50 +01:00
};
2023-08-19 23:40:25 +02:00
};
};
2024-02-02 21:07:29 +01:00
}