mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
25 lines
491 B
Nix
25 lines
491 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = {
|
|
system.stateVersion = "24.05";
|
|
time.timeZone = "America/New_York";
|
|
nix.settings.experimental-features = ["flakes" "nix-command"];
|
|
nix.settings.trusted-users = ["@wheel"];
|
|
|
|
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
|
|
];
|
|
};
|
|
}
|