alejandra?
This commit is contained in:
parent
63baacc410
commit
21d7561a56
17 changed files with 296 additions and 204 deletions
100
flake.nix
100
flake.nix
|
|
@ -23,55 +23,63 @@
|
|||
nixConfig = {
|
||||
# extra-substituters = [ "https://hyprland.cachix.org" "https://ezkea.cachix.org" ];
|
||||
# extra-trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" "ezkea.cachix.org-1:ioBmUbJTZIKsHmWWXPe1FSFbeVe+afhfgqgTSNd34eI=" ];
|
||||
extra-substituters = [ "https://hyprland.cachix.org" ];
|
||||
extra-trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
|
||||
extra-substituters = ["https://hyprland.cachix.org"];
|
||||
extra-trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
|
||||
};
|
||||
|
||||
# outputs = { self, nixpkgs, nixos-hardware, nixos-raspberrypi, home-manager, helix, aagl, ... }@inputs:
|
||||
outputs = { self, nixpkgs, nixos-hardware, nixos-raspberrypi, home-manager, helix, jujutsu, ... }@inputs:
|
||||
{
|
||||
nixosConfigurations = {
|
||||
NOcomputer = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
nixos-hardware.nixosModules.common-cpu-amd
|
||||
nixos-hardware.nixosModules.common-gpu-nvidia-nonprime
|
||||
./systems/BASED.nix
|
||||
./systems/NOcomputer.nix
|
||||
./users/tao.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
./extras/uwuraid.nix
|
||||
./extras/dev.nix
|
||||
./extras/gaming.nix
|
||||
./extras/cosmic.nix
|
||||
];
|
||||
};
|
||||
NOlaptop = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
nixos-hardware.nixosModules.common-cpu-intel
|
||||
# inputs.nixos-hardware.nixosModules.framework-12th-gen-intel
|
||||
./systems/BASED.nix
|
||||
./systems/NOlaptop.nix
|
||||
./users/tao.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
./extras/uwuraid.nix
|
||||
./extras/dev.nix
|
||||
./extras/gaming.nix
|
||||
./extras/cosmic.nix
|
||||
];
|
||||
};
|
||||
# NObangers = nixos-system [
|
||||
# # ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable-arm ]; })
|
||||
# nixos-hw.raspberry-pi-4
|
||||
# nixos-rpi.hardware
|
||||
# ./systems/BASED.nix
|
||||
# ./systems/NObangers.nix
|
||||
# ./users/pi.nix
|
||||
# ./extras/uwuraid.nix
|
||||
# ];
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
nixos-hardware,
|
||||
nixos-raspberrypi,
|
||||
home-manager,
|
||||
helix,
|
||||
jujutsu,
|
||||
...
|
||||
} @ inputs: {
|
||||
nixosConfigurations = {
|
||||
NOcomputer = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {inherit inputs;};
|
||||
modules = [
|
||||
nixos-hardware.nixosModules.common-cpu-amd
|
||||
nixos-hardware.nixosModules.common-gpu-nvidia-nonprime
|
||||
./systems/BASED.nix
|
||||
./systems/NOcomputer.nix
|
||||
./users/tao.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
./extras/uwuraid.nix
|
||||
./extras/dev.nix
|
||||
./extras/gaming.nix
|
||||
./extras/cosmic.nix
|
||||
];
|
||||
};
|
||||
NOlaptop = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {inherit inputs;};
|
||||
modules = [
|
||||
nixos-hardware.nixosModules.common-cpu-intel
|
||||
# inputs.nixos-hardware.nixosModules.framework-12th-gen-intel
|
||||
./systems/BASED.nix
|
||||
./systems/NOlaptop.nix
|
||||
./users/tao.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
./extras/uwuraid.nix
|
||||
./extras/dev.nix
|
||||
./extras/gaming.nix
|
||||
./extras/cosmic.nix
|
||||
];
|
||||
};
|
||||
# NObangers = nixos-system [
|
||||
# # ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable-arm ]; })
|
||||
# nixos-hw.raspberry-pi-4
|
||||
# nixos-rpi.hardware
|
||||
# ./systems/BASED.nix
|
||||
# ./systems/NObangers.nix
|
||||
# ./users/pi.nix
|
||||
# ./extras/uwuraid.nix
|
||||
# ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue