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"
|
nix flake update --extra-experimental-features "nix-command flakes"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Usefull link
|
||||||
|
|
||||||
|
- https://api.github.com/rate_limit
|
||||||
|
|
||||||
# Sources
|
# Sources
|
||||||
|
|
||||||
- https://github.com/ryan4yin/nix-config/tree/v0.0.2
|
- https://github.com/ryan4yin/nix-config/tree/v0.0.2
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
./programs/emacs.nix
|
./programs/emacs.nix
|
||||||
./programs/vscode.nix
|
./programs/vscode.nix
|
||||||
./programs/mise.nix
|
./programs/mise.nix
|
||||||
|
./programs/chromium.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
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;
|
enable = true;
|
||||||
userName = "Florian RICHER";
|
userName = "Florian RICHER";
|
||||||
userEmail = "florian.richer@protonmail.com";
|
userEmail = "florian.richer@protonmail.com";
|
||||||
|
|
||||||
|
# signing.signByDefault = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -19,14 +19,12 @@
|
||||||
LC_TIME = "fr_FR.UTF-8";
|
LC_TIME = "fr_FR.UTF-8";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
vim
|
vim
|
||||||
git
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
|
@ -41,7 +39,6 @@
|
||||||
slack
|
slack
|
||||||
skypeforlinux
|
skypeforlinux
|
||||||
discord
|
discord
|
||||||
google-chrome
|
|
||||||
# thunderbird
|
# thunderbird
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue