mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-23 03:32:08 +01:00
22 lines
249 B
Nix
22 lines
249 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../modules
|
|
../services
|
|
|
|
./filesystems.nix
|
|
./boot.nix
|
|
./networking.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
personal = {
|
|
services = { };
|
|
};
|
|
|
|
system = {
|
|
stateVersion = "21.11";
|
|
};
|
|
}
|