Compare commits
No commits in common. "e058c6aa1dfbf2fac3ed046a91427f69bf361216" and "94bd059ab69b7e82c0c56288933c066b6783196b" have entirely different histories.
e058c6aa1d
...
94bd059ab6
12
flake.nix
12
flake.nix
|
@ -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";};
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
{...}: {imports = [./default.nix];}
|
|
@ -1 +1,3 @@
|
|||
{...}: {imports = [./default.nix];}
|
||||
{...}: {
|
||||
imports = [./default.nix];
|
||||
}
|
||||
|
|
|
@ -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 @@
|
|||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Reference in a new issue