Compare commits

...

2 commits

4 changed files with 150 additions and 130 deletions

View file

@ -73,6 +73,18 @@
in {
inherit (home-manager) defaultPackage;
homeConfigurations = {
# Fallback entry
pixelifytica = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {system = "x86_64-linux";};
modules = defaultModules {
username = "pixelifytica";
hostname = "Atlas";
};
extraSpecialArgs = defaultExtraSpecialArgs {
system = "x86_64-linux";
hostname = "Atlas";
};
};
# Server
"pixelifytica@Legion" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {system = "x86_64-linux";};

1
home/Atlas.nix Normal file
View file

@ -0,0 +1 @@
{...}: {imports = [./default.nix];}

View file

@ -1,3 +1 @@
{...}: {
imports = [./default.nix];
}
{...}: {imports = [./default.nix];}

View file

@ -1,10 +1,14 @@
{
config,
lib,
pkgs,
...
}: {
programs.firefox = {
programs = {
browserpass = {
enable = true;
browsers = ["firefox"];
};
firefox = {
enable = true;
policies = {
BlockAboutProfiles = true;
@ -42,6 +46,10 @@
installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
};
"browserpass@maximbaz.com" = {
installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/browserpass-ce/latest.xpi";
};
"addon@simplelogin" = {
installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/simplelogin/latest.xpi";
@ -137,4 +145,5 @@
];
};
};
};
}