mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 11:31:36 +01:00
12 lines
145 B
Nix
12 lines
145 B
Nix
|
|
{ config, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
imports =
|
||
|
|
[
|
||
|
|
./hardware-configuration.nix
|
||
|
|
../shared.nix
|
||
|
|
];
|
||
|
|
|
||
|
|
networking.hostName = "laptop";
|
||
|
|
}
|