Begin add laptop perso conf

This commit is contained in:
Florian RICHER 2024-02-02 21:07:29 +01:00
parent 10735f4461
commit 42ac86def2
10 changed files with 193 additions and 31 deletions

View file

@ -50,6 +50,23 @@
}
];
};
perso-laptop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/perso-laptop
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = inputs;
home-manager.users.florian = import ./home;
}
];
};
};
};
}
}