Skip to content

Commit

Permalink
Corrected a bit en the example.
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgenkaff committed Sep 1, 2024
1 parent eb72aae commit 0eb2c9a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions nix/example.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
description = "An example flake for Nanonote";

# This example flake does probably not work. But it should make it clear how to add Nanonote
# to your system flake, to be able to install Nanonote on your nix system.

{
description = "An example flake for Nanonote";

inputs = {

# General nixos inputs:
# General nixpkgs inputs:
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";

# Home-mamanger inputs
Expand All @@ -18,10 +19,12 @@ description = "An example flake for Nanonote";

};

outputs = { self, nixpkgs, home-manager, nanonote, ... }@inputs:
outputs = { nixpkgs, home-manager, nanonote, ... }@inputs:

let

# Set the system you are using here.
# This can be set in multiple ways, this is just one example.
system = "x86_64-linux";

in {
Expand Down

0 comments on commit 0eb2c9a

Please sign in to comment.