Update references and folder names

This commit is contained in:
jimjam4real 2024-09-23 11:41:28 -04:00
parent 4cafc51f01
commit d402b1c806
82 changed files with 88 additions and 88 deletions

View file

@ -6,10 +6,10 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nur.url = "github:nix-community/NUR";
nixos-mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-24.05";
mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-24.05";
blender-bin.url = "https://flakehub.com/f/edolstra/blender-bin/1.0.8.tar.gz";
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
nixos-hardware.url = "github:nixos/nixos-hardware/master";
minecraft.url = "github:Infinidoge/nix-minecraft";
hardware.url = "github:nixos/nixos-hardware/master";
# Home manager
home-manager = {
@ -23,9 +23,9 @@
nixpkgs,
nixpkgs-unstable,
nur,
nixos-mailserver,
mailserver,
blender-bin,
nixos-hardware,
hardware,
home-manager,
...
} @inputs: let
@ -45,32 +45,32 @@
# Secrets defined so they can be accessed globally
secrets = import ./secrets.nix;
# NixOS configuration entrypoint, use 'nixos-rebuild --flake .#your-hostname'
# NixOS configuration entrypointm use 'nixos-rebuild --flake .#your-hostname'
nixosConfigurations = {
JimDesktop = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [
./nixos/desktop.nix
./system/desktop.nix
];
};
JimServer = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [
./nixos/server.nix
nixos-mailserver.nixosModule
./system/server.nix
mailserver.nixosModule
];
};
JimPine = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [
./nixos/pinebook.nix
nixos-hardware.nixosModules.pine64-pinebook-pro
./system/pinebook.nix
hardware.nixosModules.pine64-pinebook-pro
];
};
JimLenovo = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [
./nixos/lenovo.nix
./system/lenovo.nix
];
};
};