Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> [!WARNING]
> This is full deprecated please use [eveeifyeve/dotfiles](https://github.com/eveeifyeve/dotfiles) instead it has fully migrated templates and has more templates using the flake partition system.


# Flake-Templates
All of my flake templates made available to use.

Expand Down Expand Up @@ -47,4 +51,4 @@ Add the following to your flake.nix
Then use
```sh
nix flake init ./path/to/config/flake.nix -t #<template-name>
```
```
84 changes: 84 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 3 additions & 41 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,49 +1,11 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";

eveeifyeve-dotfiles.url = "github:eveeifyeve/dotfiles/flake-parts";
};


outputs = { self, nixpkgs }:
outputs = { self, eveeifyeve-dotfiles }:
{
templates = {
node = {
path = ./node;
description = "Node template";
};
python = {
path = self.templates.python.default.path;
description = self.templates.python.default.description;
default = {
path = ./python/default;
description = "Python template";
};
poetry = {
path = ./python/poetry;
description = "Python template with poetry";
};
};
rust = {
path = self.templates.rust.default.path;
description = self.templates.rust.default.description;
default = {
path = ./rust/default;
description = "Rust template";
};
fenix = {
path = ./rust/fenix;
description = "Rust template with fenix";
};
rust-overlay = {
path = ./rust/rust-overlay;
description = "Rust template with rust-overlay";
};
};
zig = {
path = ./zig;
description = "Zig template";
};
};
templates = builtins.warn "templates are deprecated on eveeifyeve/flake-templates please use eveeifyeve/dotfiles: https://github.com/eveeifyeve/dotfiles" eveeifyeve-dotfiles.templates;
};
}
1 change: 0 additions & 1 deletion node/.envrc

This file was deleted.

29 changes: 0 additions & 29 deletions node/flake.nix

This file was deleted.

27 changes: 0 additions & 27 deletions node/nix/exampleNpmPackage.nix

This file was deleted.

26 changes: 0 additions & 26 deletions node/nix/pnpmExample.nix

This file was deleted.

1 change: 0 additions & 1 deletion python/default/.envrc

This file was deleted.

27 changes: 0 additions & 27 deletions python/default/flake.nix

This file was deleted.

30 changes: 0 additions & 30 deletions python/default/nix/exampleApplication.nix

This file was deleted.

42 changes: 0 additions & 42 deletions python/default/nix/examplePackage.nix

This file was deleted.

1 change: 0 additions & 1 deletion python/poetry/.envrc

This file was deleted.

29 changes: 0 additions & 29 deletions python/poetry/flake.nix

This file was deleted.

Loading