Add chromium

This commit is contained in:
Florian RICHER 2024-02-17 19:09:54 +01:00
parent f3a9f5da42
commit 479cebb66a
5 changed files with 21 additions and 3 deletions

View file

@ -8,6 +8,10 @@ nixos-rebuild switch --flake flake_path_directory#hostname
nix flake update --extra-experimental-features "nix-command flakes"
```
# Usefull link
- https://api.github.com/rate_limit
# Sources
- https://github.com/ryan4yin/nix-config/tree/v0.0.2

View file

@ -6,6 +6,7 @@
./programs/emacs.nix
./programs/vscode.nix
./programs/mise.nix
./programs/chromium.nix
];
home = {

View file

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
programs.chromium = {
enable = true;
extensions = [
{ id = "cjpalhdlnbpafiamejdnhcphjbkeiagm"; } # Ublock Origin
{ id = "nngceckbapebfimnlniiiahkandclblb"; } # Bitwarden
{ id = "fnaicdffflnofjppbagibeoednhnbjhg"; } # Floccus Bookmark manager
{ id = "fihnjjcciajhdojfnbdddfaoknhalnja"; } # I don't care about cookies
];
};
}

View file

@ -5,5 +5,7 @@
enable = true;
userName = "Florian RICHER";
userEmail = "florian.richer@protonmail.com";
# signing.signByDefault = true;
};
}

View file

@ -19,14 +19,12 @@
LC_TIME = "fr_FR.UTF-8";
};
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim
git
];
# Define a user account. Don't forget to set a password with passwd.
@ -41,7 +39,6 @@
slack
skypeforlinux
discord
google-chrome
# thunderbird
];
};