switch rust toolchain to stable
This commit is contained in:
parent
4b64c62ebc
commit
b25d2b44a3
3 changed files with 18 additions and 19 deletions
14
flake.nix
14
flake.nix
|
@ -32,18 +32,20 @@
|
|||
modules = [
|
||||
sops-nix.nixosModules.sops
|
||||
./hosts/microwave
|
||||
./modules/graphical.nix
|
||||
./modules/basic-tools.nix
|
||||
./modules/gnupg.nix
|
||||
./modules/hw-accel-intel.nix
|
||||
./modules/radio.nix
|
||||
./modules/tlp.nix
|
||||
./modules/binary-caches.nix
|
||||
./modules/chromium.nix
|
||||
./modules/gnupg.nix
|
||||
./modules/graphical.nix
|
||||
./modules/hw-accel-intel.nix
|
||||
./modules/mail.nix
|
||||
./modules/radio.nix
|
||||
./modules/science.nix
|
||||
./modules/tlp.nix
|
||||
({ pkgs, ... }: {
|
||||
nixpkgs.overlays = [ fenix.overlay ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
(fenix.packages."x86_64-linux".complete.withComponents [
|
||||
(fenix.packages."x86_64-linux".stable.withComponents [
|
||||
"cargo"
|
||||
"clippy"
|
||||
"rust-src"
|
||||
|
|
|
@ -2,11 +2,10 @@
|
|||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
# (ungoogled-chromium.override { enableVaapi = true; })
|
||||
chromium
|
||||
];
|
||||
|
||||
nixpkgs.config.chromium.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland --force-dark-mode --enable-features=WebUIDarkMode";
|
||||
nixpkgs.config.chromium.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland --force-dark-mode --ignore-gpu-blocklist --enable-gpu-rasterization --enable-zero-copy --enable-features=VaapiVideoDecoder,WebUIDarkMode";
|
||||
|
||||
programs.chromium = {
|
||||
enable = true;
|
||||
|
@ -26,8 +25,9 @@
|
|||
"AutoplayAllowed" = false;
|
||||
"DefaultNotificationSetting" = 2;
|
||||
"BackgroundModeEnabled" = false;
|
||||
"DefaultSearchProviderEnabled" = true;
|
||||
"DefaultSearchProviderSearchURL" = "https://google.com/?q={searchTerms}";
|
||||
# "DefaultSearchProviderEnabled" = true;
|
||||
# "DefaultSearchProviderSearchURL" = "https://google.com/search?q={searchTerms}";
|
||||
# "DefaultSearchProviderSearchURL" = "https://duckduckgo.com/?q={searchTerms}";
|
||||
"SearchSuggestEnable" = false;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -2,15 +2,12 @@
|
|||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
# (rWrapper.override{ packages = with rPackages; [
|
||||
# ggplot2
|
||||
# swirl
|
||||
# languageserver
|
||||
# dplyr
|
||||
# data_table
|
||||
# ]; })
|
||||
#(rstudioWrapper.override{ packages = with rPackages; [ ggplot2 ]; })
|
||||
texlive.combined.scheme-full
|
||||
(rWrapper.override{ packages = with rPackages; [
|
||||
ggplot2
|
||||
swirl
|
||||
dplyr
|
||||
data_table
|
||||
]; })
|
||||
gnuplot
|
||||
graphicsmagick
|
||||
zotero
|
||||
|
|
Loading…
Add table
Reference in a new issue