Add chromium
This commit is contained in:
parent
f3a9f5da42
commit
479cebb66a
5 changed files with 21 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
./programs/emacs.nix
|
||||
./programs/vscode.nix
|
||||
./programs/mise.nix
|
||||
./programs/chromium.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
|
|
14
home/programs/chromium.nix
Normal file
14
home/programs/chromium.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
|
@ -5,5 +5,7 @@
|
|||
enable = true;
|
||||
userName = "Florian RICHER";
|
||||
userEmail = "florian.richer@protonmail.com";
|
||||
|
||||
# signing.signByDefault = true;
|
||||
};
|
||||
}
|
|
@ -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
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue