nixos-configs/flake.nix

385 lines
7.7 KiB
Nix
Raw Normal View History

2023-09-29 23:46:34 -04:00
{
2023-12-03 04:50:17 -05:00
outputs = inputs @ {
self,
home-manager,
nixpkgs,
2023-12-08 14:59:44 -05:00
nix-on-droid,
secrets,
...
2023-12-03 04:50:17 -05:00
}: let
supportedSystems = ["x86_64-linux" "aarch64-linux"];
2023-12-03 02:24:11 -05:00
2023-12-03 04:50:17 -05:00
perSystem = attrs:
nixpkgs.lib.genAttrs supportedSystems (system: let
pkgs = nixpkgs.legacyPackages.${system};
in
attrs system pkgs);
2023-12-03 02:24:11 -05:00
2023-12-03 04:50:17 -05:00
# Default system
mkNixOS = mods:
nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = inputs;
modules =
[
{home-manager.extraSpecialArgs = inputs;}
./common
]
++ mods;
};
# Nix-On-Droid
inherit (nix-on-droid.lib) nixOnDroidConfiguration;
in {
nixosConfigurations = {
wim = mkNixOS [
./devices/wim
secrets.nixosModules.default
];
binto = mkNixOS [./devices/binto];
2023-12-06 13:59:14 -05:00
servivi = mkNixOS [
./devices/servivi
secrets.nixosModules.servivi
];
2023-12-06 13:59:14 -05:00
oksys = mkNixOS [
./devices/oksys
secrets.nixosModules.oksys
];
# Cluster
thingone = mkNixOS [
(import ./devices/cluster "thingone")
2024-01-21 22:11:38 -05:00
secrets.nixosModules.thingy
];
thingtwo = mkNixOS [
(import ./devices/cluster "thingtwo")
2024-01-21 22:11:38 -05:00
secrets.nixosModules.thingy
];
live-image = mkNixOS [
("${nixpkgs}/nixos/modules/installer/"
+ "cd-dvd/installation-cd-minimal.nix")
2024-01-06 11:35:45 -05:00
{home-manager.users.nixos.home.stateVersion = "24.05";}
{vars.mainUser = "nixos";}
];
};
nixOnDroidConfigurations.default = nixOnDroidConfiguration (
import ./devices/android inputs
);
2023-12-08 14:59:44 -05:00
2023-12-03 04:50:17 -05:00
formatter = perSystem (_: pkgs: pkgs.alejandra);
devShells = perSystem (_: pkgs: {
default = pkgs.mkShell {
packages = with pkgs; [
alejandra
git
(pkgs.writeShellScriptBin "mkIso" (lib.concatStrings [
"nix build $(realpath /etc/nixos)#nixosConfigurations."
"live-image.config.system.build.isoImage"
]))
];
};
});
};
2023-09-29 23:46:34 -04:00
inputs = {
# Main inputs
nixpkgs = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable";
};
home-manager = {
type = "github";
owner = "nix-community";
repo = "home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
secrets = {
type = "git";
url = "ssh://git@git.nelim.org/matt1432/nixos-secrets";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-12-08 14:59:44 -05:00
nix-on-droid = {
type = "github";
owner = "t184256";
repo = "nix-on-droid";
inputs = {
nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
};
2023-12-08 14:59:44 -05:00
};
# Overlays
nixpkgs-wayland = {
type = "github";
owner = "nix-community";
repo = "nixpkgs-wayland";
};
nur = {
type = "github";
owner = "nix-community";
repo = "NUR";
};
nix-gaming = {
type = "github";
owner = "fufexan";
repo = "nix-gaming";
2023-11-28 21:43:26 -05:00
};
# Cluster Inputs
pacemaker = {
type = "github";
owner = "matt1432";
repo = "nixos-pacemaker";
2024-01-27 01:56:44 -05:00
# FIXME: OCF resources break on latest
# inputs.nixpkgs.follows = "nixpkgs";
};
# Oksys inputs
2023-11-28 21:43:26 -05:00
headscale = {
type = "github";
owner = "juanfont";
repo = "headscale";
2023-11-28 21:43:26 -05:00
inputs.nixpkgs.follows = "nixpkgs";
2023-11-29 22:15:31 -05:00
};
2023-11-29 22:15:31 -05:00
caddy-plugins = {
type = "github";
owner = "matt1432";
repo = "nixos-caddy-cloudflare";
2023-11-29 22:15:31 -05:00
inputs.nixpkgs.follows = "nixpkgs";
2023-09-29 23:46:34 -04:00
};
# Servivi inputs
nms = {
type = "github";
owner = "matt1432";
repo = "nixos-minecraft-servers";
inputs.nixpkgs.follows = "nixpkgs";
};
arion = {
type = "github";
owner = "hercules-ci";
repo = "arion";
inputs.nixpkgs.follows = "nixpkgs";
};
# Desktop inputs
hyprland = {
type = "github";
owner = "hyprwm";
repo = "Hyprland";
inputs.nixpkgs.follows = "nixpkgs";
};
# FIXME: https://github.com/horriblename/hyprgrass/issues/76
2023-09-29 23:46:34 -04:00
hyprgrass = {
type = "github";
owner = "horriblename";
repo = "hyprgrass";
2023-09-29 23:46:34 -04:00
inputs.hyprland.follows = "hyprland";
};
ags = {
type = "github";
owner = "Aylur";
repo = "ags";
inputs.nixpkgs.follows = "nixpkgs";
};
coc-stylelintplus = {
type = "github";
owner = "matt1432";
repo = "coc-stylelintplus";
inputs.nixpkgs.follows = "nixpkgs";
};
tree-sitter-hyprlang = {
type = "github";
owner = "luckasRanarison";
2024-01-04 03:39:14 -05:00
repo = "tree-sitter-hyprlang";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-19 15:09:57 -05:00
# Nix tools
nurl = {
type = "github";
owner = "nix-community";
repo = "nurl";
};
2023-11-22 14:36:42 -05:00
nix-index-db = {
type = "github";
owner = "Mic92";
repo = "nix-index-database";
2023-11-22 14:36:42 -05:00
inputs.nixpkgs.follows = "nixpkgs";
};
# FIXME: these prevent from using nixos-install
nh = {
type = "github";
owner = "viperML";
repo = "nh";
};
nix-melt = {
type = "github";
owner = "nix-community";
repo = "nix-melt";
};
# -= Non-flake inputs =-
## Custom packages
trash-d-src = {
type = "github";
owner = "rushsteve1";
repo = "trash-d";
flake = false;
};
pam-fprint-grosshack-src = {
type = "gitlab";
owner = "mishakmak";
repo = "pam-fprint-grosshack";
flake = false;
};
pokemon-colorscripts-src = {
type = "gitlab";
owner = "phoneybadger";
repo = "pokemon-colorscripts";
flake = false;
};
## Overlays
plymouth-src = {
type = "gitlab";
host = "gitlab.freedesktop.org";
2024-01-03 01:08:09 -05:00
# Wait for https://gitlab.freedesktop.org/plymouth/plymouth/-/commit/38964e5eafdfc7d8eccf29aa65056f303cad0b25
2024-01-14 22:20:37 -05:00
# to reach https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/os-specific/linux/plymouth/default.nix
owner = "plymouth";
repo = "plymouth";
flake = false;
};
spotifywm-src = {
type = "github";
owner = "dasJ";
repo = "spotifywm";
flake = false;
};
gpu-screen-recorder-src = {
type = "git";
url = "https://repo.dec05eba.com/gpu-screen-recorder";
flake = false;
};
# MPV scripts
modernx-src = {
type = "github";
owner = "cyl0";
repo = "ModernX";
flake = false;
};
persist-properties-src = {
type = "github";
owner = "d87";
repo = "mpv-persist-properties";
flake = false;
};
pointer-event-src = {
type = "github";
owner = "christoph-heinrich";
repo = "mpv-pointer-event";
flake = false;
};
touch-gestures-src = {
type = "github";
owner = "christoph-heinrich";
repo = "mpv-touch-gestures";
flake = false;
};
eisa-scripts-src = {
type = "github";
owner = "Eisa01";
repo = "mpv-scripts";
flake = false;
};
## Dracula src
nvim-theme-src = {
type = "github";
owner = "Mofiqul";
repo = "dracula.nvim";
flake = false;
};
bat-theme-src = {
type = "github";
owner = "matt1432";
repo = "bat";
flake = false;
};
git-theme-src = {
type = "github";
owner = "dracula";
repo = "git";
flake = false;
};
gtk-theme-src = {
type = "github";
owner = "dracula";
repo = "gtk";
flake = false;
};
plymouth-theme-src = {
type = "github";
owner = "matt1432";
repo = "dracula-plymouth";
flake = false;
};
xresources-theme-src = {
type = "github";
owner = "dracula";
repo = "xresources";
flake = false;
};
2023-09-29 23:46:34 -04:00
};
}