From 3647b6c1140cb9e0cebeab19e53c0294f966b19b Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Tue, 26 Sep 2023 19:41:45 +0530 Subject: flake: init --- flake.lock | 27 +++++++++++++++++++++++++++ flake.nix | 30 ++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 flake.lock create mode 100644 flake.nix diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..03f190c --- /dev/null +++ b/flake.lock @@ -0,0 +1,27 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1695318763, + "narHash": "sha256-FHVPDRP2AfvsxAdc+AsgFJevMz5VBmnZglFUMlxBkcY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "e12483116b3b51a185a33a272bf351e357ba9a99", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..b6b0cdf --- /dev/null +++ b/flake.nix @@ -0,0 +1,30 @@ +{ + description = "A Wayland Program"; + + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + + outputs = { self, nixpkgs }: + let + supportedSystems = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; + + forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: (forSystem system f)); + + forSystem = system: f: f rec { + inherit system; + pkgs = import nixpkgs { inherit system; }; + lib = pkgs.lib; + }; + in + { + devShells = forAllSystems ({ system, pkgs, ...}: { + default = pkgs.mkShell { + name = "wayland-program"; + + buildInputs = with pkgs; [ wayland ]; + shellHook = '' + export PS1="\033[0;33m[󱄄 ]\033[0m $PS1" + ''; + }; + }); + }; +} -- cgit v1.2.3