Skip to content

Commit

Permalink
flake: update
Browse files Browse the repository at this point in the history
  • Loading branch information
LEXUGE committed Jul 7, 2024
1 parent ba1108a commit e0a1970
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 60 deletions.
7 changes: 5 additions & 2 deletions cfgs/shards/services.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@
role = "bridge";
};
settings = {
# ContactInfo = "[email protected]";
ContactInfo = "[email protected]";
# Nickname = "toradmin";
ORPort = 8002;
ORPort = [{
port = 8002;
flags = [ "IPv4Only" ];
}];
# ServerTransportPlugins are automatically set by nixpkgs
ServerTransportListenAddr = "obfs4 0.0.0.0:8003";
AccountingStart = "week 1 10:00";
Expand Down
1 change: 1 addition & 0 deletions cfgs/x1c7/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
# We fix installer version so don't get updated automatically when Wolfram releases new version
# mathematica_13_3_1
uxplay
zotero
];
extraDconf = {
"org/gnome/desktop/interface"."scaling-factor" = hm.gvariant.mkUint32 2;
Expand Down
110 changes: 55 additions & 55 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions modules/gnome-desktop/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,11 @@ in {

# Some of the GNOME Packages are unwanted
programs.geary.enable = false;
environment.gnome.excludePackages = with pkgs.gnome; [
epiphany # GNOME Web
environment.gnome.excludePackages = [
pkgs.epiphany # GNOME Web
] ++ (with pkgs.gnome; [
gnome-software
gnome-characters
] ++ cfg.extraExcludePackages;
]) ++ cfg.extraExcludePackages;
};
}

0 comments on commit e0a1970

Please sign in to comment.