Skip to content

Commit

Permalink
proper disk naming + 24.05
Browse files Browse the repository at this point in the history
  • Loading branch information
orzklv committed Jun 9, 2024
1 parent 80a61d2 commit 7c0e96f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ in other package managers.

`unstable-packages` is for packages that you want to always keep at the latest
released versions, and `stable-packages` is for packages that you want to track
with the current release of NixOS (currently 23.11).
with the current release of NixOS (currently 24.05).

If you want to update the versions of the available `unstable-packages`, run
`nix flake update` to pull the latest version of the Nixpkgs repository and
Expand Down
8 changes: 4 additions & 4 deletions disk-config.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
disko.devices = {
disk = {
one = {
nvme0n1 = {
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "gpt";
partitions = {
BOOT = {
size = "1M";
type = "EF02"; # for grub MBR
type = "EF02";
};
ESP = {
size = "500M";
Expand All @@ -36,15 +36,15 @@
};
};
};
two = {
nvme1n1 = {
type = "disk";
device = "/dev/nvme1n1";
content = {
type = "gpt";
partitions = {
BOOT = {
size = "1M";
type = "EF02"; # for grub MBR
type = "EF02";
};
ESP = {
size = "500M";
Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
description = "NixOS configuration for affecting servers";

# NixOS 24.05
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
inputs.nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";

# Home Manager
inputs.home-manager.url = "github:nix-community/home-manager/release-23.11";
inputs.home-manager.url = "github:nix-community/home-manager/release-24.05";
inputs.home-manager.inputs.nixpkgs.follows = "nixpkgs";

# Nix User Repository
Expand Down
2 changes: 1 addition & 1 deletion home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ in {
nix-index-database.hmModules.nix-index
];

home.stateVersion = "23.11";
home.stateVersion = "24.05";

home = {
username = "${username}";
Expand Down
2 changes: 1 addition & 1 deletion linux.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
];
};

system.stateVersion = "23.11";
system.stateVersion = "24.05";

virtualisation.docker = {
enable = true;
Expand Down

0 comments on commit 7c0e96f

Please sign in to comment.