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 {
|
in {
|
||||||
inherit (home-manager) defaultPackage;
|
inherit (home-manager) defaultPackage;
|
||||||
homeConfigurations = {
|
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
|
# Server
|
||||||
"pixelifytica@Legion" = home-manager.lib.homeManagerConfiguration {
|
"pixelifytica@Legion" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {system = "x86_64-linux";};
|
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,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
programs = {
|
programs.firefox = {
|
||||||
browserpass = {
|
|
||||||
enable = true;
|
|
||||||
browsers = ["firefox"];
|
|
||||||
};
|
|
||||||
firefox = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
policies = {
|
policies = {
|
||||||
BlockAboutProfiles = true;
|
BlockAboutProfiles = true;
|
||||||
|
@ -46,10 +42,6 @@
|
||||||
installation_mode = "force_installed";
|
installation_mode = "force_installed";
|
||||||
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
|
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" = {
|
"addon@simplelogin" = {
|
||||||
installation_mode = "force_installed";
|
installation_mode = "force_installed";
|
||||||
install_url = "https://addons.mozilla.org/firefox/downloads/latest/simplelogin/latest.xpi";
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/simplelogin/latest.xpi";
|
||||||
|
@ -145,5 +137,4 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue