added comments to flake inputs

This commit is contained in:
Leyla Becker 2024-11-22 23:47:06 -06:00
parent a71ddaf5bd
commit 131f04d901
2 changed files with 4 additions and 0 deletions

View file

@ -47,6 +47,7 @@
- move applications in server environment into their own flakes - move applications in server environment into their own flakes
- get rid of disko config and import it in hardware-configuration.nix - get rid of disko config and import it in hardware-configuration.nix
- why does users.users.<name>.home conflict with home-manager.users.<name>.home.homeDirectory - why does users.users.<name>.home conflict with home-manager.users.<name>.home.homeDirectory
- get rid of environments folder
## New Features ## New Features
- offline access for nfs mounts (overlay with rsync might be a good option here? https://www.spinics.net/lists/linux-unionfs/msg07105.html note about nfs4 and overlay fs) - offline access for nfs mounts (overlay with rsync might be a good option here? https://www.spinics.net/lists/linux-unionfs/msg07105.html note about nfs4 and overlay fs)
- Flake templates - Flake templates

View file

@ -33,6 +33,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# firefox extensions
firefox-addons = { firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons"; url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -49,10 +50,12 @@
url = "github:NixOS/nixos-hardware/master"; url = "github:NixOS/nixos-hardware/master";
}; };
# this is just here so that we have a lock on it for our dev shells
flake-compat = { flake-compat = {
url = "github:edolstra/flake-compat"; url = "github:edolstra/flake-compat";
}; };
# lix in nice ig
lix-module = { lix-module = {
url = "git+https://git.lix.systems/lix-project/nixos-module?ref=stable"; url = "git+https://git.lix.systems/lix-project/nixos-module?ref=stable";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";