Add tungsten (#9)

Reviewed-on: https://codeberg.org/leana8959/.files/pulls/9
Co-authored-by: Léana 江 <leana.jiang+git@icloud.com>
Co-committed-by: Léana 江 <leana.jiang+git@icloud.com>
This commit is contained in:
Primrose 2025-04-10 23:25:55 +00:00 committed by Léana
parent 1848be039a
commit b20a752858
41 changed files with 1749 additions and 43 deletions

View file

@ -14,6 +14,13 @@ in
(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")
];
nix.settings = {
extra-substituters = ["https://leana8959.cachix.org"];
extra-trusted-substituters = ["https://leana8959.cachix.org"];
extra-trusted-public-keys = ["leana8959.cachix.org-1:CxQSAp8lcgMv8Me459of0jdXRW2tcyeYRKTiiUq8z0M="];
experimental-features = ["nix-command" "flakes"];
};
nixpkgs = {
hostPlatform = system;
overlays = [self.overlays.default self.overlays.packages'];
@ -31,6 +38,7 @@ in
networking.firewall.allowedTCPPorts = [8080]; # in case you wanna nc
programs.tmux.enable = true;
users.users.nixos.shell = pkgs.fish;
programs.fish.enable = true;
}