Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpart
base: dabde329efb9^
Choose a base ref
...
head repository: NixOS/nixpart
compare: 69bd518b34b2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 15, 2018

  1. solves #4 – "nix expression for btrfs subvolume is not correct"

    This makes it possible to have a root subvolume in btrfs which is not
    mounted as `/`.
    Thomas Bach authored and aszlig committed May 15, 2018
    Configuration menu
    Copy the full SHA
    dabde32 View commit details
    Browse the repository at this point in the history
  2. Fix generating invalid Nix attribute sets

    If the data given to nixify() is a dictionary and it's empty, the result
    is that we get *two* empty Nix attribute sets, like this:
    
    fileSystems = {}{};
    
    So either we'd need to return after appending {} to the output or just
    remove the check for whether data is an empty dict.
    
    I choose the latter as it decreases the amount of branches.
    
    Thanks to @nh2 for reporting.
    
    Signed-off-by: aszlig <aszlig@nix.build>
    Fixes: #11
    aszlig committed May 15, 2018
    Configuration menu
    Copy the full SHA
    69bd518 View commit details
    Browse the repository at this point in the history