Skip to content

Commit

Permalink
buildiso: flake: update
Browse files Browse the repository at this point in the history
  • Loading branch information
LEXUGE committed Oct 3, 2023
1 parent 9c42832 commit a1f7201
Show file tree
Hide file tree
Showing 7 changed files with 188 additions and 62 deletions.
4 changes: 2 additions & 2 deletions cfgs/deck/i18n.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ pkgs, lib, config, ... }: {
# Set your time zone.
# time.timeZone = "Europe/London";
time.timeZone = "Europe/London";
# time.timeZone = "Asia/Shanghai";
time.timeZone = null;
# time.timeZone = null;

# Select internationalisation properties.
console = {
Expand Down
2 changes: 1 addition & 1 deletion cfgs/x1c7/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
};

# Fonts
fonts.fonts = with pkgs; [
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
Expand Down
4 changes: 2 additions & 2 deletions cfgs/x1c7/i18n.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ pkgs, lib, config, ... }: {
# Set your time zone.
# time.timeZone = "Europe/London";
time.timeZone = "Europe/London";
# time.timeZone = "Asia/Shanghai";
time.timeZone = null;
# time.timeZone = null;

# Select internationalisation properties.
console = {
Expand Down
6 changes: 6 additions & 0 deletions cfgs/x1c7/services.nix
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@
package = pkgs.wireshark-qt;
};

# IPFS service
services.kubo = {
enable = true;
settings.Addresses.API = [ "/ip4/127.0.0.1/tcp/5001" ];
};

# Required to enable completion somehow.
programs.zsh.enable = true;

Expand Down
Loading

0 comments on commit a1f7201

Please sign in to comment.