Skip to content

Instantly share code, notes, and snippets.

@pinpox

pinpox/flake.nix Secret

Created January 1, 2021 22:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pinpox/c05bffc4972fb48d5d51ba6aa12b0db6 to your computer and use it in GitHub Desktop.
Save pinpox/c05bffc4972fb48d5d51ba6aa12b0db6 to your computer and use it in GitHub Desktop.
{
description = "A very basic flake";
inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; };
outputs = { self, nixpkgs }: {
nixosModules = {
dotfiles = { config, ... }: {
home.file = { ".config/awesome".source = ./dotfiles; };
};
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment