mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-10 02:54:39 -07:00
15 lines
390 B
Nix
15 lines
390 B
Nix
# ~/nixconfig/nixos/configuration.nix.new
|
|
{ config, pkgs, overlays, ... }:
|
|
|
|
{
|
|
# Apply the overlays passed from the flake
|
|
nixpkgs.overlays = [ overlays.rust overlays.halloy ];
|
|
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../modules/nixos/laptop/desktop.nix
|
|
../modules/nixos/common/base.nix
|
|
../modules/nixos/laptop/user.nix
|
|
../modules/nixos/common/tailscale.nix
|
|
];
|
|
}
|