System/nixos/modules/base.nix

31 lines
378 B
Nix
Raw Permalink Normal View History

2024-11-27 23:59:57 +00:00
{ inputs }:
{
config,
lib,
pkgs,
...
}:
{
imports = [
inputs.lix-module.nixosModules.default
];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
2024-11-29 03:23:30 +00:00
environment.systemPackages = with pkgs; [
neovim
git
tmux
nixfmt-rfc-style
nix-index
];
2024-11-27 23:59:57 +00:00
system.stateVersion = "24.11";
2024-11-29 06:05:35 +00:00
nixpkgs.config.allowUnfree = true;
2024-11-27 23:59:57 +00:00
}