Compare commits

..

No commits in common. "e058c6aa1dfbf2fac3ed046a91427f69bf361216" and "94bd059ab69b7e82c0c56288933c066b6783196b" have entirely different histories.

4 changed files with 128 additions and 148 deletions

View file

@ -73,18 +73,6 @@
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";};

View file

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

View file

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

View file

@ -1,14 +1,10 @@
{
config,
lib,
pkgs,
...
}: {
programs = {
browserpass = {
enable = true;
browsers = ["firefox"];
};
firefox = {
programs.firefox = {
enable = true;
policies = {
BlockAboutProfiles = true;
@ -46,10 +42,6 @@
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";
@ -145,5 +137,4 @@
];
};
};
};
}