Skip to content

Commit

Permalink
fix: deprecated options
Browse files Browse the repository at this point in the history
  • Loading branch information
sioodmy committed Jan 2, 2024
1 parent 5e89939 commit 3c4f8de
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 38 deletions.
56 changes: 28 additions & 28 deletions flake.lock

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

15 changes: 10 additions & 5 deletions home/cli/tools/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,18 @@ in {
enable = true;
config = {
pager = "less -FR";
theme = "Catppuccin-mocha";
theme = "catppuccin-mocha";
};
themes = {
Catppuccin-mocha = builtins.readFile (pkgs.fetchurl {
url = "https://raw.githubusercontent.com/catppuccin/bat/main/Catppuccin-mocha.tmTheme";
hash = "sha256-qMQNJGZImmjrqzy7IiEkY5IhvPAMZpq0W6skLLsng/w=";
});
catppuccin-mocha = {
src = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "bat";
rev = "ba4d16880d63e656acced2b7d4e034e4a93f74b1";
sha256 = "6WVKQErGdaqb++oaXnY3i6/GuH2FhTgK0v4TN4Y0Wbw=";
};
file = "Catppuccin-mocha.tmTheme";
};
};
};
};
Expand Down
2 changes: 1 addition & 1 deletion system/core/network.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ in {
unmanaged = ["docker0" "rndis0"];
dns = mkIf dnscrypt "none";
wifi = {
macAddress = "random";
# macAddress = "random";
powersave = true;
};
};
Expand Down
5 changes: 1 addition & 4 deletions system/core/system.nix
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,7 @@
# Systemd OOMd
# Fedora enables these options by default. See the 10-oomd-* files here:
# https://src.fedoraproject.org/rpms/systemd/tree/acb90c49c42276b06375a66c73673ac3510255
oomd = {
enableRootSlice = true;
enableUserServices = true;
};
oomd.enableRootSlice = true;

# TODO channels-to-flakes
tmpfiles.rules = [
Expand Down

0 comments on commit 3c4f8de

Please sign in to comment.