67 lines
2.0 KiB
Nix
67 lines
2.0 KiB
Nix
{
|
|
description = "My nixos config as a flake";
|
|
|
|
|
|
inputs = {
|
|
# Stable
|
|
nixpkgs.url = "nixpkgs/nixos-24.05";
|
|
home-manager.url = "github:nix-community/home-manager/release-24.05";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
# Unstable
|
|
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
|
|
home-manager-unstable.url = "github:nix-community/home-manager";
|
|
home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
|
|
|
|
|
nvim-config.url = "git+https://gitea.cam123.dev/CameronReed/Neovim-Config";
|
|
nvim-config.flake = false;
|
|
|
|
nix-colors.url = "github:misterio77/nix-colors";
|
|
|
|
lf-icons.url = "github:gokcehan/lf";
|
|
lf-icons.flake = false;
|
|
};
|
|
|
|
|
|
outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, home-manager-unstable, nvim-config, nix-colors, lf-icons }:
|
|
let
|
|
common_dir = ./common;
|
|
inputs = { inherit common_dir nvim-config nix-colors lf-icons; };
|
|
in {
|
|
nixosConfigurations = {
|
|
|
|
nixos = nixpkgs-unstable.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = { inherit common_dir; };
|
|
modules = [
|
|
./hosts/nixos/configuration.nix
|
|
home-manager-unstable.nixosModules.home-manager {
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.users.cameron = import ./hosts/nixos/home-manager/cameron.nix;
|
|
|
|
home-manager.extraSpecialArgs = { inherit inputs; };
|
|
}
|
|
];
|
|
};
|
|
|
|
nixserver = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = { inherit common_dir; };
|
|
modules = [
|
|
./hosts/nixserver/configuration.nix
|
|
home-manager.nixosModules.home-manager {
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.users.cameron = import ./hosts/nixserver/home-manager/cameron.nix;
|
|
|
|
home-manager.extraSpecialArgs = { inherit inputs; };
|
|
}
|
|
];
|
|
};
|
|
|
|
};
|
|
};
|
|
}
|