Skip to content

Commit

Permalink
feat(NixOS): WIP Firefox+arkenfox
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Nov 17, 2023
1 parent cd0de2f commit 9a5b644
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
url = "github:neovim/neovim?dir=contrib";
inputs.nixpkgs.follows = "nixpkgs";
};
arkenfox.url = "github:dwarfmaster/arkenfox-nixos";
};

outputs = inputs@{ self, nixpkgs, home-manager, ... }: {
Expand Down
1 change: 1 addition & 0 deletions home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ in {
};

imports = [
# ./modules/arkenfox.nix # TODO figure out how to load the arkenfox flake module
./modules/nvim.nix
./modules/fish.nix
./modules/fzf.nix
Expand Down
26 changes: 26 additions & 0 deletions home-manager/modules/arkenfox.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
programs.firefox = {
enable = true;
arkenfox = {
enable = true;
version = "118.0";
};

profiles.Default.arkenfox = {
enable = true;
"0000".enable = true;
"0100".enable = true;
"0200".enable = true;
"0300".enable = true;
"0400".enable = true;
"0600".enable = true;
"0800".enable = true;
"0900".enable = true;
"1200".enable = true;
"1600".enable = true;
"2600".enable = true;
"2700".enable = true;
"2800".enable = true;
};
};
}

0 comments on commit 9a5b644

Please sign in to comment.