mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 19:47:47 +00:00
Move commented code to BROKEN.md
This commit is contained in:
parent
fb2cb24b91
commit
a0fa73b873
2 changed files with 38 additions and 29 deletions
38
BROKEN.md
38
BROKEN.md
|
@ -1,3 +1,41 @@
|
|||
# Broken Stuff
|
||||
|
||||
- QT theme doesn't work.
|
||||
|
||||
- Nix Super errors, saying it expected an attrset and got a
|
||||
trunk when evaluating the non-outputs section. This should
|
||||
work, as it is an advertised feature (And it does! Don't get
|
||||
me wrong, it works if you don't use the builtins namespace)
|
||||
but doesn't work completely. Max is working on a fix, so I've
|
||||
put the soon-to-be attributes here, so I don't forget.
|
||||
|
||||
```nix
|
||||
nixConfig = with builtins; mapAttrs (_: concatStringsSep " ") {
|
||||
extra-substituters = [
|
||||
"https://nix-community.cachix.org/"
|
||||
"https://hyprland.cachix.org/"
|
||||
"https://cache.privatevoid.net/"
|
||||
];
|
||||
|
||||
extra-trusted-public-keys = [
|
||||
"nix-community.cachix.org:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
"hyprland.cachix.org:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
||||
"cache.privatevoid.net:SErQ8bvNWANeAvtsOESUwVYr2VJynfuc9JRwlzTTkVg="
|
||||
];
|
||||
};
|
||||
|
||||
inputs = with builtins; mapAttrs (name: url: {
|
||||
url = "git+https://${url}";
|
||||
} // (if elem name [ "nixSuper" "hyprland" "hyprpicker" ] then {} else {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
})) {
|
||||
nixSuper = "github.com/privatevoid-net/nix-super";
|
||||
nixpkgs = "github.com/NixOS/nixpkgs/tree/nixos-unstable";
|
||||
homeManager = "github.com/nix-community/home-manager";
|
||||
hyprland = "github.com/hyprwm/Hyprland";
|
||||
hyprpicker = "github.com/hyprwm/hyprpicker";
|
||||
fenix = "github.com/nix-community/fenix";
|
||||
tools = "github.com/RGBCube/FlakeTools";
|
||||
themes = "github.com/RGBCube/ThemeNix";
|
||||
};
|
||||
```
|
||||
|
|
29
flake.nix
29
flake.nix
|
@ -1,35 +1,6 @@
|
|||
{
|
||||
description = "All my NixOS configurations.";
|
||||
|
||||
# nixConfig = with builtins; mapAttrs (_: concatStringsSep " ") {
|
||||
# extra-substituters = [
|
||||
# "https://nix-community.cachix.org/"
|
||||
# "https://hyprland.cachix.org/"
|
||||
# "https://cache.privatevoid.net/"
|
||||
# ];
|
||||
|
||||
# extra-trusted-public-keys = [
|
||||
# "nix-community.cachix.org:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
# "hyprland.cachix.org:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
||||
# "cache.privatevoid.net:SErQ8bvNWANeAvtsOESUwVYr2VJynfuc9JRwlzTTkVg="
|
||||
# ];
|
||||
# };
|
||||
|
||||
# inputs = with builtins; mapAttrs (name: url: {
|
||||
# url = "git+https://${url}";
|
||||
# } // (if elem name [ "nixSuper" "hyprland" "hyprpicker" ] then {} else {
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# })) {
|
||||
# nixSuper = "github.com/privatevoid-net/nix-super";
|
||||
# nixpkgs = "github.com/NixOS/nixpkgs/tree/nixos-unstable";
|
||||
# homeManager = "github.com/nix-community/home-manager";
|
||||
# hyprland = "github.com/hyprwm/Hyprland";
|
||||
# hyprpicker = "github.com/hyprwm/hyprpicker";
|
||||
# fenix = "github.com/nix-community/fenix";
|
||||
# tools = "github.com/RGBCube/FlakeTools";
|
||||
# themes = "github.com/RGBCube/ThemeNix";
|
||||
# };
|
||||
|
||||
nixConfig = {
|
||||
extra-substituters = ''
|
||||
https://nix-community.cachix.org/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue