mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 01:34:08 -05:00
36 lines
875 B
Nix
36 lines
875 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/wce-cache"];
|
|
trusted-public-keys = ["wce-cache:s5otDeH048aZEGwQ2EQn6UfFJn6YgP71bcOok1jX1Q0="];
|
|
};
|
|
|
|
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
|
|
];
|
|
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
config.permittedInsecurePackages = [
|
|
"dotnet-runtime-wrapped-7.0.20"
|
|
"dotnet-runtime-7.0.20"
|
|
"SDL_ttf-2.0.11"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|