add readme
manage firefox profile with nix change locale back to english
This commit is contained in:
parent
79372c4cd9
commit
e3ee31ce94
3 changed files with 13 additions and 2 deletions
5
README.md
Normal file
5
README.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
# TODO
|
||||
|
||||
- uninstall Gnome console
|
||||
- auto-install firefox extensions
|
||||
- flakes?
|
|
@ -13,7 +13,7 @@ in
|
|||
boot.loader.systemd-boot.enable = true;
|
||||
networking.hostName = "x260";
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
i18n.defaultLocale = "nl_NL.UTF-8";
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
|
|
8
home.nix
8
home.nix
|
@ -10,7 +10,13 @@
|
|||
programs = {
|
||||
home-manager.enable = true;
|
||||
alacritty.enable = true;
|
||||
firefox.enable = true;
|
||||
firefox = {
|
||||
enable = true;
|
||||
profiles.default = {
|
||||
id = 0;
|
||||
isDefault = true;
|
||||
};
|
||||
};
|
||||
|
||||
bash = {
|
||||
enable = true;
|
||||
|
|
Reference in a new issue