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 = [
|
modules = [
|
||||||
sops-nix.nixosModules.sops
|
sops-nix.nixosModules.sops
|
||||||
./hosts/microwave
|
./hosts/microwave
|
||||||
./modules/graphical.nix
|
|
||||||
./modules/basic-tools.nix
|
./modules/basic-tools.nix
|
||||||
./modules/gnupg.nix
|
|
||||||
./modules/hw-accel-intel.nix
|
|
||||||
./modules/radio.nix
|
|
||||||
./modules/tlp.nix
|
|
||||||
./modules/binary-caches.nix
|
./modules/binary-caches.nix
|
||||||
|
./modules/chromium.nix
|
||||||
|
./modules/gnupg.nix
|
||||||
|
./modules/graphical.nix
|
||||||
|
./modules/hw-accel-intel.nix
|
||||||
./modules/mail.nix
|
./modules/mail.nix
|
||||||
|
./modules/radio.nix
|
||||||
|
./modules/science.nix
|
||||||
|
./modules/tlp.nix
|
||||||
({ pkgs, ... }: {
|
({ pkgs, ... }: {
|
||||||
nixpkgs.overlays = [ fenix.overlay ];
|
nixpkgs.overlays = [ fenix.overlay ];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
(fenix.packages."x86_64-linux".complete.withComponents [
|
(fenix.packages."x86_64-linux".stable.withComponents [
|
||||||
"cargo"
|
"cargo"
|
||||||
"clippy"
|
"clippy"
|
||||||
"rust-src"
|
"rust-src"
|
||||||
|
|
|
@ -2,11 +2,10 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# (ungoogled-chromium.override { enableVaapi = true; })
|
|
||||||
chromium
|
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 = {
|
programs.chromium = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -26,8 +25,9 @@
|
||||||
"AutoplayAllowed" = false;
|
"AutoplayAllowed" = false;
|
||||||
"DefaultNotificationSetting" = 2;
|
"DefaultNotificationSetting" = 2;
|
||||||
"BackgroundModeEnabled" = false;
|
"BackgroundModeEnabled" = false;
|
||||||
"DefaultSearchProviderEnabled" = true;
|
# "DefaultSearchProviderEnabled" = true;
|
||||||
"DefaultSearchProviderSearchURL" = "https://google.com/?q={searchTerms}";
|
# "DefaultSearchProviderSearchURL" = "https://google.com/search?q={searchTerms}";
|
||||||
|
# "DefaultSearchProviderSearchURL" = "https://duckduckgo.com/?q={searchTerms}";
|
||||||
"SearchSuggestEnable" = false;
|
"SearchSuggestEnable" = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,15 +2,12 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# (rWrapper.override{ packages = with rPackages; [
|
(rWrapper.override{ packages = with rPackages; [
|
||||||
# ggplot2
|
ggplot2
|
||||||
# swirl
|
swirl
|
||||||
# languageserver
|
dplyr
|
||||||
# dplyr
|
data_table
|
||||||
# data_table
|
]; })
|
||||||
# ]; })
|
|
||||||
#(rstudioWrapper.override{ packages = with rPackages; [ ggplot2 ]; })
|
|
||||||
texlive.combined.scheme-full
|
|
||||||
gnuplot
|
gnuplot
|
||||||
graphicsmagick
|
graphicsmagick
|
||||||
zotero
|
zotero
|
||||||
|
|
Loading…
Add table
Reference in a new issue