-
-
Notifications
You must be signed in to change notification settings - Fork 2
tweaks: add nix #13
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
Open
zackerthescar
wants to merge
3
commits into
Ultramarine-Linux:main
Choose a base branch
from
zackerthescar:rileys-branch
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
tweaks: add nix #13
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| --- | ||
| # ansible playbook to uninstall Nix | ||
|
|
||
| - name: Execute the Determinate Systems Nix uninstaller | ||
| hosts: localhost | ||
| connection: local | ||
| become: true | ||
| gather_facts: true | ||
| tasks: | ||
| - name: Ensure path in /tmp for storing installer | ||
| ansible.builtin.file: | ||
| path: /tmp/nix-installer-tweak/ | ||
| state: directory | ||
| owner: root | ||
| group: root | ||
| - name: Get Determinate Systems Nix installer | ||
| ansible.builtin.get_url: | ||
| dest: /tmp/nix-installer-tweak/ | ||
| url: https://install.determinate.systems/nix | ||
| mode: 0755 | ||
| - name: Execute Uninstaller | ||
| ansible.builtin.shell: | ||
| cmd: /tmp/nix-installer-tweak/nix-installer.sh uninstall --no-confirm | ||
| - name: Unmount /nix and remove /nix from /etc/fstab | ||
| ansible.posix.mount: | ||
| path: /nix | ||
| state: absent | ||
| - name: Get device name for the root filesystem | ||
| ansible.builtin.shell: | ||
| cmd: df -P / | tail -n1 | awk '{print $1}' | ||
| register: root_device | ||
| changed_when: false | ||
| - name: Get UUID of the btrfs root filesystem | ||
| ansible.builtin.shell: | ||
| cmd: blkid -s UUID -o value "{{ root_device.stdout }}" | ||
| register: btrfs_uuid | ||
| changed_when: false | ||
| - name: Remove Nix btrfs subvolume | ||
| community.general.btrfs_subvolume: | ||
| name: /nix | ||
| filesystem_device: "{{ root_device.stdout }}" | ||
| state: absent | ||
| - name: Delete /nix | ||
| ansible.builtin.file: | ||
| name: /nix | ||
| state: absent | ||
| - name: Cleanup | ||
| ansible.builtin.file: | ||
| name: /tmp/nix-installer-tweak | ||
| state: absent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| --- | ||
| # ansible playbook to install Nix | ||
|
|
||
| - name: Execute the Determinate Systems Nix installer | ||
| hosts: localhost | ||
| connection: local | ||
| become: true | ||
| gather_facts: true | ||
| tasks: | ||
| - name: Get device name of the root filesystem | ||
| ansible.builtin.shell: | ||
| cmd: df -P / | tail -n1 | awk '{print $1}' | ||
| register: root_device | ||
| changed_when: false | ||
| - name: Get UUID | ||
| ansible.builtin.shell: | ||
| cmd: blkid -s UUID -o value "{{ root_device.stdout }}" | ||
| register: btrfs_uuid | ||
| changed_when: false | ||
| - name: Create Nix btrfs subvolume | ||
| community.general.btrfs_subvolume: | ||
| name: /nix | ||
| filesystem_device: "{{ root_device.stdout }}" | ||
| - name: Ensure /nix exists for subvol mount path | ||
| ansible.builtin.file: | ||
| path: /nix | ||
| state: directory | ||
| owner: root | ||
| group: root | ||
| # We mount ephemerally first to make sure we fail if this doesn't work | ||
| # instead of cursing /etc/fstab to a failed state | ||
| - name: Mount /nix | ||
| ansible.builtin.shell: | ||
| cmd: mount -o "subvol=nix,noatime,compress=zstd:7" UUID={{ btrfs_uuid.stdout }} /nix | ||
| # In a just world, state: mounted in the below task would do the above task. | ||
| # Our world is not just. Our world is not kind. ansible.posix.mount | ||
| # does not have any idea what a subvol is and will try (and fail) | ||
| # to unmount root. | ||
| - name: Add Nix subvolume to /etc/fstab | ||
| ansible.posix.mount: | ||
| src: "UUID={{ btrfs_uuid.stdout }}" | ||
| path: /nix | ||
| fstype: btrfs | ||
| opts: subvol=nix,noatime,compress=zstd:7 | ||
| state: present | ||
| - name: Ensure path in /tmp for storing installer | ||
| ansible.builtin.file: | ||
| path: /tmp/nix-installer-tweak/ | ||
| state: directory | ||
| owner: root | ||
| group: root | ||
| - name: Get Determinate Systems Nix installer | ||
| ansible.builtin.get_url: | ||
| dest: /tmp/nix-installer-tweak/ | ||
| url: https://install.determinate.systems/nix | ||
| mode: 0755 | ||
| - name: Execute Installer | ||
| ansible.builtin.shell: | ||
| cmd: /tmp/nix-installer-tweak/nix-installer.sh install --no-confirm | ||
| - name: Cleanup | ||
| ansible.builtin.file: | ||
| name: /tmp/nix-installer-tweak | ||
| state: absent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| description: "Install the Nix package manager" | ||
| type: toggle | ||
| stability: alpha | ||
|
|
||
| warning: |- | ||
| This enables the Nix package manager by executing the Determinate Systems | ||
| Nix Installer silently. Stability is alpha as it does mess with your root | ||
| btrfs (It creates a subvol with higher compression, thanks to Nix's large | ||
| storage requirements). Nix allows for ephemeral shells as well as | ||
| reproducable development and execution environments without the need for | ||
| a container runtime or virtualization. | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.