Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nixos-install-oneclick: Initialize #33

Merged
merged 12 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion en/nixos-install-oneclick.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,16 @@ order: 3

# Install NixOS directly from a remote flake

[ ] To write
>[!WARNING] To Write
> This tutorial has not been written yet. What you see below are just rough notes.

Boot from a NixOS install live CD, and then:

```sh
sudo nix \
--extra-experimental-features 'flakes nix-command' \
run github:nix-community/disko#disko-install -- \
--flake "github:nixos-asia/website/disko-install?dir=global/nixos-install-oneclick#oneclick" \
--write-efi-boot-entries \
--disk main /dev/sda
```
37 changes: 37 additions & 0 deletions global/nixos-install-oneclick/disk-config.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
disko.devices = {
disk = {
main = {
# When using disko-install, we will overwrite this value from the commandline
device = "/dev/disk/by-id/some-disk-id";
type = "disk";
content = {
type = "gpt";
partitions = {
MBR = {
type = "EF02"; # for grub MBR
size = "1M";
};
ESP = {
type = "EF00";
size = "500M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}
48 changes: 48 additions & 0 deletions global/nixos-install-oneclick/flake.lock

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

32 changes: 32 additions & 0 deletions global/nixos-install-oneclick/flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, disko, ... }: {
nixosConfigurations.oneclick = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./disk-config.nix
disko.nixosModules.disko
({ pkgs, ... }: {
environment.systemPackages = [ pkgs.htop ];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
Comment on lines +15 to +17
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Given this warning, we should probably talk a bit of boot configuration in this post.

};
networking.hostName = "oneclick";
services.openssh.enable = true;

# Add your key here
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHQRxPoqlThDrkR58pKnJgmeWPY9/wleReRbZ2MOZRyd"
];

system.stateVersion = "23.11";
})
];
};
};
}
Loading