21 lines
227 B
Nix
21 lines
227 B
Nix
|
{ inputs }:
|
||
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
inputs.lix-module.nixosModules.default
|
||
|
];
|
||
|
|
||
|
nix.settings.experimental-features = [
|
||
|
"nix-command"
|
||
|
"flakes"
|
||
|
];
|
||
|
|
||
|
system.stateVersion = "24.11";
|
||
|
}
|