Compare commits
2 commits
94bd059ab6
...
e058c6aa1d
Author | SHA1 | Date | |
---|---|---|---|
Evie Litherland-Smith | e058c6aa1d | ||
Evie Litherland-Smith | 242da6ca5f |
12
flake.nix
12
flake.nix
|
@ -73,6 +73,18 @@
|
||||||
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
home/Atlas.nix
Normal file
1
home/Atlas.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{...}: {imports = [./default.nix];}
|
|
@ -1,3 +1 @@
|
||||||
{...}: {
|
{...}: {imports = [./default.nix];}
|
||||||
imports = [./default.nix];
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
{
|
{
|
||||||
config,
|
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
programs.firefox = {
|
programs = {
|
||||||
|
browserpass = {
|
||||||
|
enable = true;
|
||||||
|
browsers = ["firefox"];
|
||||||
|
};
|
||||||
|
firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
policies = {
|
policies = {
|
||||||
BlockAboutProfiles = true;
|
BlockAboutProfiles = true;
|
||||||
|
@ -42,6 +46,10 @@
|
||||||
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";
|
||||||
|
@ -137,4 +145,5 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue