mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 10:24:36 +00:00
28 lines
473 B
Nix
28 lines
473 B
Nix
{
|
|
system = "x86_64-linux";
|
|
configModule =
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules
|
|
];
|
|
|
|
networking.hostName = "nabro";
|
|
|
|
dotfiles = {
|
|
core.enable = true;
|
|
user.enable = true;
|
|
desktop.enable = true;
|
|
dev.enable = true;
|
|
shell.enable = true;
|
|
zsh.enable = true;
|
|
helix.enable = true;
|
|
};
|
|
};
|
|
}
|