Recreated nix files

This commit is contained in:
2026-03-03 11:45:38 +01:00
parent e5520636b2
commit 6b3e87fe9d
3 changed files with 434 additions and 422 deletions
+9 -5
View File
@@ -644,14 +644,14 @@ The inputs for my system's configuration are very simple
4. [[https://nix.catppuccin.com/][catppuccin]] - nix module that allows everything to be catppuccin themed.
#+begin_src nix :tangle flake.nix :noweb tangle
{
{
description = "Henrov's nixos configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
emacs-overlay = {
url = "github:nix-community/emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
@@ -659,14 +659,18 @@ The inputs for my system's configuration are very simple
catppuccin = {
url = "github:catppuccin/nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
zen-browser = {
url = "github:youwen5/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
hyprland-nix = {
url = "github:hyprwm/hyprland-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
<<flake-outputs>>
}
}
#+end_src
* Flake Output