nixos-config/flake.nix

252 lines
9.2 KiB
Nix
Raw Normal View History

2020-08-04 01:46:48 +04:00
{
description = "System configuration";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
2022-07-02 19:30:20 +03:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2021-09-15 23:17:00 +03:00
nixpkgs-master.url = "github:nixos/nixpkgs/master";
2024-12-28 11:33:12 +03:00
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11";
2022-12-07 22:05:00 +03:00
flake-registry = {
url = "github:nixos/flake-registry";
flake = false;
};
2021-09-28 01:37:20 +03:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-22 05:55:32 +03:00
impermanence.url = "github:nix-community/impermanence";
2024-09-14 12:31:26 +03:00
lix-module = {
2024-12-28 11:33:12 +03:00
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-2.tar.gz";
2024-09-14 12:31:26 +03:00
inputs.nixpkgs.follows = "nixpkgs";
};
2024-01-28 20:38:45 +03:00
aagl = {
url = "github:ezKEa/aagl-gtk-on-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-04-23 21:37:10 +03:00
# ataraxiasjel-nur.url = "/home/ataraxia/projects/nur";
2024-02-01 22:47:27 +03:00
ataraxiasjel-nur.url = "github:AtaraxiaSjel/nur";
2023-06-13 23:11:47 +03:00
attic.url = "github:zhaofengli/attic";
2023-04-15 03:13:02 +03:00
base16.url = "github:AtaraxiaSjel/base16-nix";
2021-09-28 01:37:20 +03:00
base16-tokyonight-scheme = {
2023-04-15 03:13:02 +03:00
url = "github:AtaraxiaSjel/base16-tokyonight-scheme";
2020-08-04 01:46:48 +04:00
flake = false;
};
2023-05-02 23:12:53 +03:00
cassowary = {
url = "github:AtaraxiaSjel/cassowary";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-06-17 19:46:51 +03:00
catppuccin.url = "github:catppuccin/nix";
2024-06-18 04:49:58 +03:00
catppuccin-vsc.url = "github:catppuccin/vscode";
2023-06-23 18:27:46 +03:00
deploy-rs.url = "github:serokell/deploy-rs";
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-09-19 23:55:49 +03:00
hyprland = {
2025-02-12 22:00:38 +03:00
url = "github:hyprwm/Hyprland";
# url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
# inputs.nixpkgs.follows ="nixpkgs";
2024-09-19 23:55:49 +03:00
};
2023-07-26 21:19:30 +03:00
mms.url = "github:mkaito/nixos-modded-minecraft-servers";
2022-01-29 00:41:41 +03:00
nix-alien = {
url = "github:thiagokokada/nix-alien";
inputs.nixpkgs.follows = "nixpkgs";
2021-09-28 01:37:20 +03:00
};
2024-07-07 16:56:27 +03:00
nix-direnv.url = "github:nix-community/nix-direnv";
2023-10-13 19:52:54 +03:00
nix-fast-build = {
url = "github:Mic92/nix-fast-build";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-02-22 23:57:37 +03:00
nix-vscode-marketplace = {
url = "github:nix-community/nix-vscode-extensions";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-08-31 01:13:53 +03:00
nixos-generators = {
url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-03-06 10:24:24 +03:00
prismlauncher.url = "github:AtaraxiaSjel/PrismLauncher/develop";
2023-11-22 06:31:23 +03:00
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-11-18 03:10:28 +03:00
srvos = {
url = "github:nix-community/srvos";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-08-04 13:37:38 +03:00
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
2020-08-04 01:46:48 +04:00
};
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (
{ self, inputs, withSystem, ... }:
let
findModules = dir:
builtins.concatLists (
builtins.attrValues (
builtins.mapAttrs (name: type:
if type == "regular" then [
{
name = builtins.elemAt (builtins.match "(.*)\\.nix" name) 0;
value = dir + "/${name}";
}
] else if (builtins.readDir (dir + "/${name}")) ? "default.nix" then [
{
inherit name;
value = dir + "/${name}";
}
]
else findModules (dir + "/${name}")
) (builtins.readDir dir)
)
);
2023-01-26 00:08:39 +03:00
# Patch nixpkgs
nixpkgs-patched = n: p:
(import n { system = "x86_64-linux"; }).pkgs.applyPatches {
name = if n ? shortRev then "nixpkgs-patched-${n.shortRev}" else "nixpkgs-patched";
src = n;
patches = p;
};
# Get nixosSystem func from patched nixpkgs
2024-08-04 13:40:32 +03:00
nixosSystem = n: import (n + "/nixos/lib/eval-config.nix");
# Make host config
2024-08-04 13:40:32 +03:00
mkHost = name: nixosSystem: self-nixpkgs:
nixosSystem {
system = builtins.readFile (./machines + "/${name}/system");
modules = builtins.attrValues self.customModules ++ [
(import (./machines + "/${name}"))
{ device = name; mainuser = "ataraxia"; }
{ nixpkgs.config.allowUnfree = true; }
2024-11-12 00:58:57 +03:00
{ sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ]; }
inputs.sops-nix.nixosModules.sops
2024-09-14 12:31:26 +03:00
inputs.lix-module.nixosModules.default
];
2024-10-24 01:39:51 +03:00
specialArgs = { inherit self inputs self-nixpkgs; secretsDir = ./secrets; };
};
2022-10-01 22:49:29 +03:00
patchesPath = map (x: ./patches + "/${x}");
in {
imports = [ ];
systems = [ "x86_64-linux" ];
2023-04-16 18:59:54 +03:00
perSystem = { pkgs, self', ... }: {
devShells.default = let
rebuild = pkgs.writeShellScriptBin "rebuild" ''
[[ -n "$1" ]] && doas nixos-rebuild --flake . $@
'';
upgrade = pkgs.writeShellScriptBin "upgrade" ''
cp flake.lock flake.lock.bak && nix flake update
[[ "$1" == "zfs" ]] && ./scripts/gen-patch-zen.sh
'';
in pkgs.mkShell {
name = "aliases";
packages = [
rebuild upgrade
] ++ builtins.attrValues {
2024-07-07 16:58:44 +03:00
inherit (pkgs) nixfmt-rfc-style statix deadnix git deploy-rs sops;
};
};
2024-07-01 12:00:24 +03:00
packages = {
Flakes-ISO = inputs.nixos-generators.nixosGenerate {
system = "x86_64-linux";
modules = [
(import (./machines/Flakes-ISO))
{ device = "Flakes-ISO"; mainuser = "ataraxia"; }
./machines/AMD-Workstation/autoinstall.nix
./machines/Dell-Laptop/autoinstall.nix
self.customModules.autoinstall
];
specialArgs = { inherit inputs; };
format = "install-iso";
};
};
};
2022-10-01 22:49:29 +03:00
2024-07-16 15:05:09 +03:00
flake = let
2024-08-04 13:40:32 +03:00
unstable-nixpkgs = nixpkgs-patched inputs.nixpkgs unstable-patches;
stable-nixpkgs = nixpkgs-patched inputs.nixpkgs-stable stable-patches;
unstable-system = nixosSystem unstable-nixpkgs;
stable-system = nixosSystem stable-nixpkgs;
2024-07-16 15:05:09 +03:00
shared-patches = patchesPath [ ];
unstable-patches = shared-patches ++ patchesPath [
2024-10-24 01:39:51 +03:00
# "netbird-24.11.patch"
2024-07-16 15:05:09 +03:00
"onlyoffice.patch"
# "zen-kernels.patch"
];
2025-02-12 21:56:01 +03:00
stable-patches = shared-patches ++ patchesPath [];
2024-07-16 15:05:09 +03:00
in {
customModules = builtins.listToAttrs (findModules ./modules);
customProfiles = builtins.listToAttrs (findModules ./profiles);
customRoles = import ./roles;
secretsDir = ./secrets;
2024-08-04 13:40:32 +03:00
inherit unstable-nixpkgs;
2024-03-04 22:41:44 +03:00
nixosConfigurations = withSystem "x86_64-linux" ({ ... }:
2024-07-16 15:05:09 +03:00
{
2024-08-04 13:40:32 +03:00
AMD-Workstation = mkHost "AMD-Workstation" unstable-system unstable-nixpkgs;
Dell-Laptop = mkHost "Dell-Laptop" unstable-system unstable-nixpkgs;
Home-Hypervisor = mkHost "Home-Hypervisor" unstable-system unstable-nixpkgs;
2024-12-28 11:33:12 +03:00
NixOS-RO-VPS = mkHost "NixOS-RO-VPS" stable-system stable-nixpkgs;
2025-03-01 14:03:23 +03:00
NixOS-FI-VPS = mkHost "NixOS-FI-VPS" unstable-system unstable-nixpkgs;
}
);
2023-11-16 04:01:47 +03:00
2024-08-04 13:45:32 +03:00
packages.x86_64-linux = {
NixOS-VM = inputs.nixos-generators.nixosGenerate {
system = "x86_64-linux";
modules = builtins.attrValues self.customModules ++ [
(import (./machines/NixOS-VM))
{ device = "NixOS-VM"; mainuser = "ataraxia"; }
{ nixpkgs.config.allowUnfree = true; }
inputs.sops-nix.nixosModules.sops
];
specialArgs = {
inherit self inputs;
secrets = ./secrets;
self-nixpkgs = unstable-nixpkgs;
};
nixosSystem = unstable-system;
format = "vm";
};
};
deploy.nodes = withSystem "x86_64-linux" ({ ... }:
let
pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux;
deployPkgs = import inputs.nixpkgs {
system = "x86_64-linux";
overlays = [
inputs.deploy-rs.overlay
(self: super: { deploy-rs = { inherit (pkgs) deploy-rs; lib = super.deploy-rs.lib; }; })
];
};
mkDeploy = name: conf: {
profiles.system = {
sshUser = "deploy";
user = "root";
2024-11-18 03:11:53 +03:00
sudo = "doas -u";
fastConnection = true;
remoteBuild = false;
path = deployPkgs.deploy-rs.lib.activate.nixos self.nixosConfigurations.${name};
};
} // conf;
in builtins.mapAttrs mkDeploy {
2024-08-04 13:57:46 +03:00
Home-Hypervisor = { hostname = "10.10.10.10"; };
Dell-Laptop = { hostname = "10.10.10.101"; };
2024-07-17 12:56:22 +03:00
NixOS-VPS = { hostname = "45.135.180.193"; };
2024-12-28 11:33:12 +03:00
NixOS-RO-VPS = { hostname = "45.134.48.174"; };
2025-03-01 14:03:23 +03:00
NixOS-FI-VPS = { hostname = "104.164.54.197"; };
}
);
2023-06-23 18:27:46 +03:00
checks = builtins.mapAttrs (system: deployLib:
deployLib.deployChecks self.deploy
) inputs.deploy-rs.lib;
2023-11-22 06:29:26 +03:00
};
}
);
2020-08-04 01:46:48 +04:00
}