nix-configurations/flake.nix

106 lines
3.1 KiB
Nix
Raw Normal View History

2022-12-30 12:05:46 +00:00
{
description = ''
This i my basic NixOS system configuration. Feel free to reuse anything you find useful.
'';
inputs = {
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
agenix.url = "github:ryantm/agenix";
2023-04-12 17:30:43 +00:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2022-12-30 12:05:46 +00:00
deploy-rs.url = "github:serokell/deploy-rs";
2023-04-06 15:12:19 +00:00
hyprland.url = "github:hyprwm/Hyprland";
2023-04-07 04:09:28 +00:00
nix-colors.url = "github:misterio77/nix-colors";
2022-12-30 12:05:46 +00:00
};
2023-04-12 17:30:43 +00:00
outputs = { self, nix-colors, nixpkgs, home-manager
2023-04-12 08:25:36 +00:00
, hyprland, agenix, deploy-rs, ... }@inputs:
2022-12-30 12:05:46 +00:00
let
inherit (self) outputs;
lib = nixpkgs.lib;
2023-02-05 13:36:38 +00:00
allowUnfree = { nixpkgs.config.allowUnfree = true; };
system = "x86_64-linux";
2022-12-30 12:05:46 +00:00
in {
2023-02-05 13:36:38 +00:00
nixosConfigurations = {
2022-12-30 12:05:46 +00:00
lkk-nix-1 = lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
2023-04-13 03:24:21 +00:00
allowUnfree
./hosts/lkk-nix-1
agenix.nixosModules.default
];
2022-12-30 12:05:46 +00:00
};
2023-02-28 14:26:31 +00:00
lkk-prod-1 = lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
allowUnfree
./hosts/lkk-prod-1
2023-04-13 03:24:21 +00:00
agenix.nixosModules.default
2023-02-28 14:26:31 +00:00
];
};
2023-03-14 12:22:16 +00:00
lkk-prod-2 = lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
allowUnfree
./hosts/lkk-prod-2
agenix.nixosModules.default
];
};
2023-04-06 15:12:19 +00:00
m3-nix = lib.nixosSystem {
2023-04-09 09:12:23 +00:00
specialArgs = { inherit inputs outputs; };
2023-04-06 15:12:19 +00:00
modules = [
allowUnfree
./hosts/m3-nix
agenix.nixosModules.default
];
};
2023-02-05 13:36:38 +00:00
};
homeConfigurations = {
2022-12-30 12:05:46 +00:00
# Laptop
2023-02-05 13:36:38 +00:00
"m3tam3re@m3-nix" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages."x86_64-linux";
2023-04-12 08:25:36 +00:00
extraSpecialArgs = { inherit inputs nix-colors; };
2023-04-06 15:12:19 +00:00
modules = [
./home/users/m3tam3re/m3-nix.nix
allowUnfree
];
2022-12-30 12:05:46 +00:00
};
2023-02-05 13:36:38 +00:00
"m3tam3re@lkk-nix-1" = home-manager.lib.homeManagerConfiguration {
2023-04-06 15:12:19 +00:00
extraSpecialArgs = { # pass things to t
2022-12-30 12:05:46 +00:00
};
2023-02-05 13:36:38 +00:00
modules = [ ./home/users/m3tam3re/lkk-nix-1.nix ];
2022-12-30 12:05:46 +00:00
};
};
deploy.nodes.lkk-nix-1 = {
hostname = "lkk-nix-1";
sshUser = "root";
profiles.system = {
user = "root";
path = deploy-rs.lib.x86_64-linux.activate.nixos
self.nixosConfigurations.lkk-nix-1;
};
};
2023-02-28 14:26:31 +00:00
deploy.nodes.lkk-prod-1 = {
hostname = "lkk-prod-1";
sshUser = "root";
profiles.system = {
user = "root";
path = deploy-rs.lib.x86_64-linux.activate.nixos
self.nixosConfigurations.lkk-prod-1;
};
};
2023-03-14 12:22:16 +00:00
deploy.nodes.lkk-prod-2 = {
hostname = "lkk-prod-2";
sshUser = "root";
profiles.system = {
user = "root";
path = deploy-rs.lib.x86_64-linux.activate.nixos
self.nixosConfigurations.lkk-prod-2;
};
};
2022-12-30 12:05:46 +00:00
deploy.remoteBuild = true;
};
}