Begin add flatpak

This commit is contained in:
Florian RICHER 2024-02-19 20:17:01 +01:00
parent 0cfd0d22d5
commit 012b7b1ff0
5 changed files with 39 additions and 4 deletions

View file

@ -12,12 +12,15 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.3.0";
};
outputs = inputs@{
self,
nixpkgs,
home-manager,
nix-flatpak,
...
}: {
nixosConfigurations = {
@ -26,7 +29,6 @@
modules = [
./hosts/nixos-test
home-manager.nixosModules.home-manager
(import ./home/common-home-manager.nix { inherit inputs; })
];
@ -37,7 +39,6 @@
modules = [
./hosts/perso-laptop
home-manager.nixosModules.home-manager
(import ./home/common-home-manager.nix { inherit inputs; })
];
@ -48,7 +49,6 @@
modules = [
./hosts/perso-desktop
home-manager.nixosModules.home-manager
(import ./home/common-home-manager.nix { inherit inputs; })
];