summaryrefslogtreecommitdiff
path: root/templates/system-flake/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/system-flake/flake.nix')
-rw-r--r--templates/system-flake/flake.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/templates/system-flake/flake.nix b/templates/system-flake/flake.nix
deleted file mode 100644
index 6afe06f..0000000
--- a/templates/system-flake/flake.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- inputs = {
- nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
- unstable.url = "github:nixos/nixpkgs/nixos-unstable";
-
- home-manager = {
- url = "github:nix-community/home-manager/release-24.11";
- inputs.nixpkgs.follows = "nixpkgs";
- };
-
- trivium = {
- url = "git+https://git.posixlycorrect.com/deepState/trivionomicon.git";
- inputs.nixpkgs.follows = "nixpkgs";
- };
- };
-
- outputs = flakes @ {
- self,
- nixpkgs,
- unstable,
- home-manager,
- trivium,
- }:
- trivium.lib.mkSystemFlake {
- system = "x86_64-linux";
- inherit flakes;
- };
-}