nix/flake.nix

106 lines
2.8 KiB
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{
description = "Nixos configuration for Xeovalyte";
inputs = {
2024-11-30 18:29:31 +01:00
nixpkgs.url = "nixpkgs/nixos-24.11";
2024-03-09 17:18:36 +01:00
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
home-manager = {
2024-11-30 18:29:31 +01:00
url = "github:nix-community/home-manager/release-24.11";
2024-03-09 17:18:36 +01:00
inputs.nixpkgs.follows = "nixpkgs";
};
nix-colors.url = "github:misterio77/nix-colors";
2024-11-30 18:29:31 +01:00
apple-fonts.url = "github:lyndeno/apple-fonts.nix";
2024-03-09 17:18:36 +01:00
};
2024-11-30 18:29:31 +01:00
outputs = inputs@{ self, nixpkgs, nixpkgs-unstable, home-manager, nix-colors, apple-fonts, ... }:
2024-03-09 17:18:36 +01:00
let
2024-05-21 10:58:33 +02:00
system = "x86_64-linux";
2024-03-09 17:18:36 +01:00
overlay-unstable = final: prev: {
2024-05-21 10:58:33 +02:00
unstable = import nixpkgs-unstable {
config.allowUnfree = true;
localSystem = { inherit system; };
};
2024-03-09 17:18:36 +01:00
};
in
{
2024-09-05 19:20:03 +02:00
# Laptop Configuration
2024-03-09 17:18:36 +01:00
nixosConfigurations = {
2024-03-12 21:24:29 +01:00
xv-laptop = nixpkgs.lib.nixosSystem {
2024-03-09 17:18:36 +01:00
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/laptop
2024-09-05 19:20:03 +02:00
];
};
};
homeConfigurations = {
"xeovalyte@xv-laptop" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs nix-colors; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/laptop/home.nix
2024-03-09 17:18:36 +01:00
];
};
};
2024-06-25 13:11:30 +02:00
2024-03-12 21:24:29 +01:00
nixosConfigurations = {
xv-desktop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/desktop
2024-11-30 18:30:01 +01:00
];
};
};
homeConfigurations = {
"xeovalyte@xv-desktop" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs nix-colors; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/desktop/home.nix
2024-03-12 21:24:29 +01:00
];
};
};
2024-06-25 13:11:30 +02:00
2024-10-11 17:17:34 +02:00
# pm01vm01 Configuration
2024-06-25 13:11:30 +02:00
nixosConfigurations = {
2024-10-11 17:17:34 +02:00
pm01vm01 = nixpkgs.lib.nixosSystem {
2024-06-25 13:11:30 +02:00
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
2024-10-11 17:17:34 +02:00
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
2024-06-25 13:11:30 +02:00
2024-10-11 17:17:34 +02:00
./hosts/pm01vm01
2024-06-25 13:11:30 +02:00
];
};
};
2024-10-11 17:17:34 +02:00
homeConfigurations = {
"xeovalyte@pm01vm01" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs nix-colors; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/pm01vm01/home.nix
];
};
};
2024-03-09 17:18:36 +01:00
};
}
2024-10-06 16:39:15 +02:00