working on towering

This commit is contained in:
alisceon 2025-07-23 13:16:55 +02:00
parent 0fb297b57d
commit 9f8084c1cf
7 changed files with 212 additions and 155 deletions

View file

@ -21,13 +21,29 @@
in
{
nixosConfigurations = {
laptop = nixpkgs.lib.nixosSystem {
electra = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
{
nixpkgs.config.allowUnfree = true;
}
./hosts/laptop/configuration.nix
./hosts/electra/configuration.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.alisceon = import ./home/users/alisceon.nix;
home-manager.backupFileExtension = "backup";
}
];
};
tower = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
{
nixpkgs.config.allowUnfree = true;
}
./hosts/tower/configuration.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;