generated from john/nix-docker
85 lines
2.6 KiB
Nix
85 lines
2.6 KiB
Nix
{
|
|
description = "Loki flake config";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
vscode-server.url = "path:./nixos/vscode";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
nixpkgs-stable,
|
|
home-manager,
|
|
...
|
|
} @ inputs:
|
|
let
|
|
inherit (self) outputs;
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
stateVersion = "24.05";
|
|
timeZone = "America/Chicago";
|
|
hostname = "loki";
|
|
lokiPort = 3100;
|
|
lokiUser = "loki";
|
|
lokiPath = "/srv/loki";
|
|
in
|
|
{
|
|
nixosConfigurations = {
|
|
${hostname} = nixpkgs.lib.nixosSystem {
|
|
specialArgs = {inherit inputs outputs;};
|
|
modules = [
|
|
./configuration.nix # > Our main nixos configuration file <
|
|
"${nixpkgs}/nixos/modules/virtualisation/proxmox-lxc.nix"
|
|
({ ... }: {
|
|
nixpkgs.hostPlatform = "${system}";
|
|
system.stateVersion = "${stateVersion}";
|
|
time.timeZone = "${timeZone}";
|
|
environment.systemPackages = [
|
|
(pkgs.writeShellScriptBin "nfs" ''
|
|
sudo nixos-rebuild switch --flake git+file://${lokiPath}#${hostname}
|
|
'')
|
|
];
|
|
})
|
|
(import ./nixosModules/services/loki.nix {
|
|
inherit pkgs;
|
|
inherit lokiPort;
|
|
inherit lokiUser;
|
|
inherit lokiPath;
|
|
})
|
|
];
|
|
};
|
|
};
|
|
|
|
homeManagerModules.default = ./homeManagerModules;
|
|
nixosModules.default = ./nixosModules;
|
|
|
|
# Standalone home-manager configuration entrypoint
|
|
# Available through 'home-manager --flake .#your-username@your-hostname'
|
|
homeConfigurations = {
|
|
useGlobalPkgs = true;
|
|
"root@${hostname}" = home-manager.lib.homeManagerConfiguration {
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
extraSpecialArgs = {inherit inputs outputs;};
|
|
modules = [(import ./home-manager/git.nix { repoPath = "${lokiPath}"; })];
|
|
};
|
|
|
|
# FIXME replace with your username@hostname
|
|
"${lokiUser}@${hostname}" = home-manager.lib.homeManagerConfiguration {
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
extraSpecialArgs = {inherit inputs outputs;};
|
|
# > Our main home-manager configuration file <
|
|
modules = [
|
|
(import ./home-manager/home.nix { user = "${lokiUser}"; repoPath = "${lokiPath}"; })
|
|
(import ./home-manager/git.nix { repoPath = "${lokiPath}"; })
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|