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