28 lines
368 B
Nix
28 lines
368 B
Nix
{inputs}: {
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.lix-module.nixosModules.default
|
|
];
|
|
|
|
nix.settings.experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
neovim
|
|
git
|
|
tmux
|
|
alejandra
|
|
nix-index
|
|
];
|
|
|
|
system.stateVersion = "24.11";
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|