Add more firefox settings

This commit is contained in:
Marko Korhonen 2024-09-21 13:51:39 +03:00
parent 55064756e6
commit 4c13fa2dcc
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
5 changed files with 207 additions and 64 deletions

View file

@ -3,27 +3,38 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nur.url = "github:nix-community/NUR";
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
firefox-gnome-theme = {
url = "github:rafaelmardojai/firefox-gnome-theme";
flake = false;
};
};
outputs = { nixpkgs, home-manager, ... }:
outputs = { nixpkgs, home-manager, nur, ... } @inputs:
{
nixosConfigurations.Mirkwood = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/Mirkwood/configuration.nix
./nixos_common.nix
{ nixpkgs.overlays = [ nur.overlay ]; }
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.functionalhacker =
import ./users/functionalhacker/home.nix;
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit inputs; };
backupFileExtension = "bak";
users.functionalhacker =
import ./users/functionalhacker/home.nix;
};
}
];
};