add readme

manage firefox profile with nix
change locale back to english
This commit is contained in:
nixos 2023-08-31 17:52:02 +02:00
parent 79372c4cd9
commit e3ee31ce94
3 changed files with 13 additions and 2 deletions

5
README.md Normal file
View file

@ -0,0 +1,5 @@
# TODO
- uninstall Gnome console
- auto-install firefox extensions
- flakes?

View file

@ -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;

View file

@ -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;