mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
23 lines
429 B
Nix
23 lines
429 B
Nix
{ inputs, outputs, ... }:
|
|
{
|
|
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-p14s-amd-gen2
|
|
./hardware-configuration.nix
|
|
./nixos.nix
|
|
inputs.home-manager.nixosModules.home-manager
|
|
{
|
|
home-manager.users.swarsel.imports = outputs.mixedModules ++ [
|
|
./home.nix
|
|
];
|
|
}
|
|
];
|
|
|
|
nixpkgs = {
|
|
overlays = outputs.overlays;
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
}
|