CrOS/modules/core.nix
2025-02-09 17:08:28 -05:00

25 lines
628 B
Nix

{pkgs, ...}: {
config = {
system.stateVersion = "24.05";
time.timeZone = "America/New_York";
nix.settings = {
experimental-features = ["flakes" "nix-command"];
trusted-users = ["@wheel"];
substituters = [" https://cache.wanderingcrow.net/main"];
trusted-public-keys = ["main:w2Ryiog6zSARbqXfTTYZmhg+FrEodWjCgyy9tYLZIAw="];
};
environment.variables = {
EDITOR = "nvim";
VISUAL = "nvim";
NIXPKGS_ALLOW_UNFREE = 1;
};
fonts.packages = with pkgs; [
font-awesome
nerd-fonts.noto
nerd-fonts.hack
nerd-fonts.jetbrains-mono
];
};
}