mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 17:13:55 -05:00
130 lines
4.1 KiB
Nix
130 lines
4.1 KiB
Nix
{
|
|
description = "Aly's NixOS flake.";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
|
nixpkgsUnstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
agenix.url = "github:ryantm/agenix";
|
|
disko.url = "github:nix-community/disko";
|
|
home-manager.url = "github:nix-community/home-manager/release-24.05";
|
|
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
|
|
iio-hyprland.url = "github:JeanSchoeller/iio-hyprland";
|
|
nixhw.url = "github:alyraffauf/nixhw";
|
|
nixvim.url = "github:nix-community/nixvim/nixos-24.05";
|
|
nur.url = github:nix-community/NUR;
|
|
raffauflabs.url = "github:alyraffauf/raffauflabs";
|
|
wallpapers.url = "github:alyraffauf/wallpapers";
|
|
|
|
agenix.inputs.nixpkgs.follows = "nixpkgs";
|
|
disko.inputs.nixpkgs.follows = "nixpkgs";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
iio-hyprland.inputs.nixpkgs.follows = "nixpkgs";
|
|
nixhw.inputs.nixpkgs.follows = "nixpkgs";
|
|
nixvim.inputs.nixpkgs.follows = "nixpkgs";
|
|
raffauflabs.inputs.nixpkgs.follows = "nixpkgs";
|
|
wallpapers.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nixConfig = {
|
|
extra-substituters = ["https://hyprland.cachix.org"];
|
|
extra-trusted-public-keys = [
|
|
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
|
];
|
|
};
|
|
|
|
outputs = inputs @ {self, ...}: {
|
|
formatter = inputs.nixpkgs.lib.genAttrs [
|
|
"aarch64-darwin"
|
|
"aarch64-linux"
|
|
"x86_64-darwin"
|
|
"x86_64-linux"
|
|
] (system: inputs.nixpkgs.legacyPackages.${system}.alejandra);
|
|
|
|
packages =
|
|
inputs.nixpkgs.lib.genAttrs [
|
|
"aarch64-linux"
|
|
"x86_64-linux"
|
|
] (system: {
|
|
default = inputs.nixpkgs.legacyPackages."${system}".writeShellScriptBin "clean-install" ''
|
|
# Check if an argument is provided
|
|
if [ $# -eq 0 ]; then
|
|
echo "Error: Please provide a valid hostname as an argument."
|
|
exit 1
|
|
fi
|
|
|
|
HOST=$1
|
|
FLAKE=github:alyraffauf/nixcfg#$HOST
|
|
|
|
echo "Warning: Running this script will wipe the currently installed system."
|
|
read -p "Do you want to continue? (y/n): " answer
|
|
|
|
if [ "$answer" != "y" ]; then
|
|
echo "Aborted."
|
|
exit 0
|
|
fi
|
|
|
|
sudo nix --experimental-features "nix-command flakes" run \
|
|
github:nix-community/disko -- --mode disko --flake $FLAKE
|
|
|
|
# Install NixOS with the updated flake input and root settings
|
|
sudo nixos-install --no-root-password --root /mnt --flake $FLAKE
|
|
'';
|
|
});
|
|
|
|
homeManagerModules.default =
|
|
import ./homeManagerModules inputs self;
|
|
|
|
nixosModules.hardware =
|
|
import ./hardwareModules inputs;
|
|
|
|
nixosModules.nixos =
|
|
import ./nixosModules inputs;
|
|
|
|
nixosConfigurations =
|
|
inputs.nixpkgs.lib.genAttrs [
|
|
"fallarbor"
|
|
"lavaridge"
|
|
"mandarin"
|
|
"mauville"
|
|
"petalburg"
|
|
"rustboro"
|
|
] (
|
|
host:
|
|
inputs.nixpkgs.lib.nixosSystem {
|
|
specialArgs = {inherit inputs self;};
|
|
modules = [
|
|
./hosts/${host}
|
|
inputs.agenix.nixosModules.default
|
|
inputs.disko.nixosModules.disko
|
|
inputs.home-manager.nixosModules.home-manager
|
|
inputs.hyprland.nixosModules.default
|
|
inputs.nixvim.nixosModules.nixvim
|
|
inputs.nur.nixosModules.nur
|
|
inputs.raffauflabs.nixosModules.raffauflabs
|
|
self.nixosModules.hardware
|
|
self.nixosModules.nixos
|
|
|
|
{
|
|
home-manager = {
|
|
backupFileExtension = "backup";
|
|
extraSpecialArgs = {inherit inputs self;};
|
|
|
|
sharedModules = [
|
|
inputs.agenix.homeManagerModules.default
|
|
inputs.hyprland.homeManagerModules.default
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
inputs.nur.hmModules.nur
|
|
self.homeManagerModules.default
|
|
];
|
|
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
};
|
|
}
|
|
];
|
|
}
|
|
);
|
|
};
|
|
}
|