Fix README and configuration.nix

This commit is contained in:
shinya 2025-11-03 13:28:48 +01:00
parent ecba9ea0e7
commit aaf8d3535a
3 changed files with 27 additions and 5 deletions

View File

@ -12,7 +12,7 @@
> The default user is admin and password admin1234.
> Don't forget to change the password.
- You can build simple qemu vm using nixos generators package in this configuration using `nix run git+https://gitea.homework.zip/shinya/Windows-Theme-Flake`
- You can build simple qemu vm using nixos generators package in this configuration using `nix run git+https://gitea.homework.zip/shinya/Windows-Theme-Flake --no-write-lock-file`
#### Live ISO

View File

@ -14,7 +14,6 @@
helix
dconf-editor
librewolf
hypnotix
blueman
libreoffice
@ -126,7 +125,7 @@
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-emoji
noto-fonts-color-emoji
corefonts
];

View File

@ -1,11 +1,34 @@
{ ... }:
{ pkgs, ... }:
{
home = {
username = "admin";
homeDirectory = "/home/admin";
stateVersion = "25.11";
};
programs.home-manager.enable = true;
programs = {
home-manager.enable = true;
};
programs.firefox = {
enable = true;
package = pkgs.librewolf;
policies = {
ExtensionSettings = {
"{120a6e62-ac3b-4204-a70f-96d50226bd58}" = {
install_url = "https://addons.mozilla.org/firefox/downloads/file/3580748/windows_xp_luna-1.0.xpi";
installation_mode = "force_installed";
};
"jid1-MnnxcxisBPnSXQ@jetpack" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/privacy-badger17/latest.xpi";
installation_mode = "force_installed";
};
"uBlock0@raymondhill.net" = {
install_url = "https://addons.mozilla.org/firefox/downloads/file/4598854/ublock_origin-1.67.0.xpi";
installation_mode = "force_installed";
};
};
};
};
services = {
network-manager-applet.enable = true;