Skip to content

Commit

Permalink
Add librewolf
Browse files Browse the repository at this point in the history
  • Loading branch information
davegallant committed Oct 9, 2024
1 parent d222ce2 commit 56e19b8
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions machines/zelus/configuration.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
{ pkgs, ... }:
let
checkBrew = "command -v brew > /dev/null";
in
{
let checkBrew = "command -v brew > /dev/null";
in {
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [ ];
};
};

networking = {
hostName = "zelus";
};
networking = { hostName = "zelus"; };

services.nix-daemon.enable = true;

Expand All @@ -32,9 +28,7 @@ in
extraInit = ''
${checkBrew} || >&2 echo "brew is not installed (install it via https://brew.sh)"
'';
variables = {
LANG = "en_US.UTF-8";
};
variables = { LANG = "en_US.UTF-8"; };
};

system.defaults = {
Expand Down Expand Up @@ -75,9 +69,7 @@ in
enable = true;
onActivation.autoUpdate = false;
onActivation.upgrade = false;
global = {
brewfile = true;
};
global = { brewfile = true; };

brews = [
"azure-cli"
Expand All @@ -96,6 +88,7 @@ in
"font-hack-nerd-font"
"karabiner-elements"
"iterm2"
"librewolf"
"logseq"
"lulu"
"notunes"
Expand Down

0 comments on commit 56e19b8

Please sign in to comment.