mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 10:24:36 +00:00
19 lines
275 B
Nix
19 lines
275 B
Nix
{
|
|
system = "x86_64-linux";
|
|
configModule =
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
self,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
self.nixosModules.desktop-suite
|
|
];
|
|
|
|
networking.hostName = "nabro";
|
|
};
|
|
}
|