add chell to dotfiles nix configuration

This commit is contained in:
Arne Dußin 2025-04-07 16:50:29 +02:00
parent c5111a4896
commit 7aa69e8675
5 changed files with 144 additions and 16 deletions

View file

@ -26,6 +26,16 @@
nur.modules.nixos.default
];
};
chell = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs outputs;
hostname = "chell";
};
modules = [
./configuration.nix
nur.modules.nixos.default
];
};
};
};
}