mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2026-01-03 17:37:15 +00:00
flake: add tuigreet package; add default formatter to devshell
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ib224afe5d3fba3d5934ab82b67ee48fa6a6a6964
This commit is contained in:
parent
e8e718ec7a
commit
a075b7c136
1 changed files with 23 additions and 14 deletions
37
flake.nix
37
flake.nix
|
|
@ -16,7 +16,7 @@
|
|||
...
|
||||
} @ inputs:
|
||||
flake-parts.lib.mkFlake {inherit inputs self;} {
|
||||
systems = import inputs.systems;
|
||||
systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
|
||||
imports = [flake-parts.flakeModules.easyOverlay];
|
||||
|
||||
perSystem = {
|
||||
|
|
@ -94,7 +94,12 @@
|
|||
devShells = {
|
||||
default = pkgs.mkShellNoCC {
|
||||
name = "nyxexprs";
|
||||
packages = [pkgs.npins];
|
||||
packages = [
|
||||
pkgs.npins
|
||||
|
||||
# Also put the default formatter in the devshell
|
||||
config.formatter
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -125,8 +130,7 @@
|
|||
};
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
systems.url = "github:nix-systems/default-linux";
|
||||
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
|
||||
flake-parts = {
|
||||
url = "github:hercules-ci/flake-parts";
|
||||
inputs.nixpkgs-lib.follows = "nixpkgs";
|
||||
|
|
@ -138,6 +142,16 @@
|
|||
};
|
||||
|
||||
# Rest of my packages will be constructed from previous flakes
|
||||
ndg = {
|
||||
url = "github:feel-co/ndg";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nh = {
|
||||
url = "github:nix-community/nh";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
watt = {
|
||||
url = "github:NotAShelf/watt";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
|
@ -153,11 +167,6 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
ndg = {
|
||||
url = "github:feel-co/ndg";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
licenseit = {
|
||||
url = "github:notashelf/licenseit";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
|
@ -178,11 +187,6 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nh = {
|
||||
url = "github:nix-community/nh";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
gh-notify = {
|
||||
url = "github:notashelf/gh-notify";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
|
@ -198,6 +202,11 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
tuigreet = {
|
||||
url = "github:notashelf/tuigreet";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# 3rd party flakes that I want to extract packages from
|
||||
wiremix = {
|
||||
url = "github:tsowell/wiremix";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue