Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
takeokunn committed Jun 11, 2024
1 parent 8d218c6 commit 6f48b23
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion home-manager/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let
darwinPkgs = import ./packages/darwin { inherit pkgs; };
nixosPkgs = import ./packages/nixos { inherit pkgs; };
in {
home.stateVersion = "23.11";
home.stateVersion = "24.11";
home.packages = basicPkgs ++ lib.optionals pkgs.stdenv.isDarwin darwinPkgs
++ lib.optionals pkgs.stdenv.isLinux nixosPkgs;
}
2 changes: 1 addition & 1 deletion nix-on-droid/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

time.timeZone = "Asia/Tokyo";

system.stateVersion = "23.11";
system.stateVersion = "24.11";

nix.extraOptions = ''
experimental-features = nix-command flakes
Expand Down
2 changes: 1 addition & 1 deletion nix-on-droid/home.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ config, lib, pkgs, system, nixpkgs, emacs-overlay, ... }: {
home = {
stateVersion = "23.11";
stateVersion = "24.11";
packages = import ../home-manager { inherit system nixpkgs emacs-overlay; };
};
}
4 changes: 2 additions & 2 deletions nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@

nix = {
gc.automatic = true;
gc.options = "--delete-older-than 5d";
gc.options = "--delete-older-than 3d";
};
nixpkgs = { config.allowUnfree = true; };

Expand All @@ -110,7 +110,7 @@
};

system = {
stateVersion = "23.11";
stateVersion = "24.11";

# MEMO: 有効にしたい
autoUpgrade.enable = false;
Expand Down

0 comments on commit 6f48b23

Please sign in to comment.