parent
684b8a5c9e
commit
5f9dca81e1
12 changed files with 1000 additions and 697 deletions
855
flake.nix
855
flake.nix
|
@ -1,584 +1,339 @@
|
|||
# Do not modify! This file is generated.
|
||||
|
||||
{
|
||||
outputs = inputs @ {
|
||||
self,
|
||||
nixpkgs,
|
||||
nix-on-droid,
|
||||
secrets,
|
||||
...
|
||||
}: let
|
||||
supportedSystems = ["x86_64-linux" "aarch64-linux"];
|
||||
|
||||
perSystem = attrs:
|
||||
nixpkgs.lib.genAttrs supportedSystems (system: let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
attrs system pkgs);
|
||||
|
||||
# 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];
|
||||
|
||||
nos = mkNixOS [
|
||||
./devices/nos
|
||||
secrets.nixosModules.nos
|
||||
];
|
||||
|
||||
servivi = mkNixOS [
|
||||
./devices/servivi
|
||||
secrets.nixosModules.servivi
|
||||
];
|
||||
|
||||
# Cluster
|
||||
thingone = mkNixOS [
|
||||
(import ./devices/cluster "thingone")
|
||||
secrets.nixosModules.thingy
|
||||
];
|
||||
thingtwo = mkNixOS [
|
||||
(import ./devices/cluster "thingtwo")
|
||||
secrets.nixosModules.thingy
|
||||
];
|
||||
|
||||
live-image = mkNixOS [
|
||||
("${nixpkgs}/nixos/modules/installer/"
|
||||
+ "cd-dvd/installation-cd-minimal.nix")
|
||||
{home-manager.users.nixos.home.stateVersion = "24.05";}
|
||||
{
|
||||
vars = {
|
||||
mainUser = "nixos";
|
||||
hostName = "nixos";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
nixOnDroidConfigurations.default = nixOnDroidConfiguration (
|
||||
import ./devices/android inputs
|
||||
);
|
||||
|
||||
formatter = perSystem (_: pkgs: pkgs.alejandra);
|
||||
|
||||
# CI: https://github.com/Mic92/dotfiles/blob/c2f538934d67417941f83d8bb65b8263c43d32ca/flake.nix#L168
|
||||
checks = perSystem (system: pkgs: let
|
||||
inherit (pkgs.lib) filterAttrs mapAttrs' nameValuePair;
|
||||
|
||||
nixosMachines = mapAttrs' (
|
||||
name: config: nameValuePair "nixos-${name}" config.config.system.build.toplevel
|
||||
) ((filterAttrs (_: config: config.pkgs.system == system)) self.nixosConfigurations);
|
||||
devShells = mapAttrs' (n: nameValuePair "devShell-${n}") self.devShells;
|
||||
in
|
||||
nixosMachines // devShells);
|
||||
|
||||
devShells = perSystem (_: pkgs: {
|
||||
default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
alejandra
|
||||
git
|
||||
|
||||
(writeShellScriptBin "mkIso" (lib.concatStrings [
|
||||
"nix build $(realpath /etc/nixos)#nixosConfigurations."
|
||||
"live-image.config.system.build.isoImage"
|
||||
]))
|
||||
];
|
||||
};
|
||||
|
||||
ags = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
nodejs_latest
|
||||
];
|
||||
};
|
||||
|
||||
subtitles-dev = pkgs.mkShell {
|
||||
packages = with pkgs;
|
||||
[
|
||||
nodejs_latest
|
||||
ffmpeg-full
|
||||
typescript
|
||||
]
|
||||
++ (with nodePackages; [
|
||||
ts-node
|
||||
]);
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
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";
|
||||
};
|
||||
|
||||
nix-on-droid = {
|
||||
type = "github";
|
||||
owner = "nix-community";
|
||||
repo = "nix-on-droid";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
home-manager.follows = "home-manager";
|
||||
};
|
||||
};
|
||||
|
||||
sops-nix = {
|
||||
type = "github";
|
||||
owner = "Mic92";
|
||||
repo = "sops-nix";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
secrets = {
|
||||
type = "git";
|
||||
url = "ssh://git@git.nelim.org/matt1432/nixos-secrets";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
sops-nix.follows = "sops-nix";
|
||||
};
|
||||
};
|
||||
#
|
||||
|
||||
# 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";
|
||||
};
|
||||
#
|
||||
|
||||
# Cluster Inputs
|
||||
pcsd = {
|
||||
type = "github";
|
||||
owner = "matt1432";
|
||||
repo = "nixos-pcsd";
|
||||
};
|
||||
|
||||
headscale = {
|
||||
type = "github";
|
||||
owner = "juanfont";
|
||||
repo = "headscale";
|
||||
|
||||
# FIXME: doesn't work on latest
|
||||
rev = "fef8261339899fe526777a7aa42df57ca02021c5";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
caddy-plugins = {
|
||||
type = "github";
|
||||
owner = "matt1432";
|
||||
repo = "nixos-caddy-cloudflare";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
#
|
||||
|
||||
# Servivi inputs
|
||||
nms = {
|
||||
type = "github";
|
||||
owner = "matt1432";
|
||||
repo = "nixos-minecraft-servers";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
#
|
||||
|
||||
# Nos inputs
|
||||
arion = {
|
||||
type = "github";
|
||||
owner = "hercules-ci";
|
||||
repo = "arion";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
jellyfin-flake = {
|
||||
type = "github";
|
||||
owner = "matt1432";
|
||||
repo = "nixos-jellyfin";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
bazarr-bulk = {
|
||||
type = "github";
|
||||
owner = "matt1432";
|
||||
repo = "bazarr-bulk";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
subsync = {
|
||||
type = "github";
|
||||
owner = "matt1432";
|
||||
repo = "subsync";
|
||||
|
||||
# Keep version that uses Sphinxbase
|
||||
rev = "ee9e1592ae4ec7c694d8857aa72be079d81ea209";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
#
|
||||
|
||||
# Desktop inputs
|
||||
## Hyprland
|
||||
hyprland = {
|
||||
type = "git";
|
||||
url = "https://github.com/hyprwm/Hyprland";
|
||||
submodules = true;
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
hypr-official-plugins = {
|
||||
type = "github";
|
||||
owner = "hyprwm";
|
||||
repo = "hyprland-plugins";
|
||||
|
||||
inputs.hyprland.follows = "hyprland";
|
||||
};
|
||||
|
||||
Hyprspace = {
|
||||
type = "github";
|
||||
inputs.hyprland.follows = "hyprland";
|
||||
owner = "KZDKM";
|
||||
repo = "Hyprspace";
|
||||
|
||||
inputs.hyprland.follows = "hyprland";
|
||||
};
|
||||
|
||||
hypridle = {
|
||||
type = "github";
|
||||
owner = "hyprwm";
|
||||
repo = "hypridle";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
grim-hyprland = {
|
||||
type = "github";
|
||||
owner = "eriedaberrie";
|
||||
repo = "grim-hyprland";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
##
|
||||
|
||||
## Wayland
|
||||
wpaperd = {
|
||||
type = "github";
|
||||
owner = "danyspin97";
|
||||
repo = "wpaperd";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
##
|
||||
|
||||
## AGS
|
||||
ags = {
|
||||
type = "github";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "Aylur";
|
||||
repo = "ags";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
astal = {
|
||||
type = "github";
|
||||
};
|
||||
arion = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "hercules-ci";
|
||||
repo = "arion";
|
||||
type = "github";
|
||||
};
|
||||
astal = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "Aylur";
|
||||
repo = "Astal";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
gtk-session-lock = {
|
||||
type = "github";
|
||||
owner = "Cu3PO42";
|
||||
repo = "gtk-session-lock";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
##
|
||||
#
|
||||
|
||||
# Neovim inputs
|
||||
neovim-nightly = {
|
||||
type = "github";
|
||||
owner = "nix-community";
|
||||
repo = "neovim-nightly-overlay";
|
||||
|
||||
# FIXME: issue with grammars on latest unstable
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
## LSPs
|
||||
stylelint-lsp = {
|
||||
type = "github";
|
||||
owner = "matt1432";
|
||||
repo = "stylelint-lsp";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nixd = {
|
||||
type = "github";
|
||||
owner = "nix-community";
|
||||
repo = "nixd";
|
||||
};
|
||||
|
||||
# FIXME: get it from nixpkgs when it gets merged
|
||||
basedpyright.url = "github:kiike/nixpkgs/pkgs/basedpyright";
|
||||
|
||||
## Plugin sources
|
||||
vimplugin-easytables-src = {
|
||||
type = "github";
|
||||
owner = "Myzel394";
|
||||
repo = "easytables.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
vimplugin-ts-error-translator-src = {
|
||||
type = "github";
|
||||
owner = "dmmulroy";
|
||||
repo = "ts-error-translator.nvim";
|
||||
flake = false;
|
||||
};
|
||||
#
|
||||
|
||||
# Nix tools
|
||||
nurl = {
|
||||
type = "github";
|
||||
owner = "nix-community";
|
||||
repo = "nurl";
|
||||
};
|
||||
|
||||
nix-index-db = {
|
||||
type = "github";
|
||||
owner = "Mic92";
|
||||
repo = "nix-index-database";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nh = {
|
||||
type = "github";
|
||||
owner = "viperML";
|
||||
repo = "nh";
|
||||
};
|
||||
|
||||
nix-melt = {
|
||||
type = "github";
|
||||
owner = "nix-community";
|
||||
repo = "nix-melt";
|
||||
};
|
||||
|
||||
nix-eval-jobs = {
|
||||
type = "github";
|
||||
owner = "nix-community";
|
||||
repo = "nix-eval-jobs";
|
||||
ref = "release-2.21";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nix-fast-build = {
|
||||
type = "github";
|
||||
owner = "Mic92";
|
||||
repo = "nix-fast-build";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
#
|
||||
|
||||
# -= 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;
|
||||
};
|
||||
|
||||
curseforge-server-downloader-src = {
|
||||
type = "github";
|
||||
owner = "Malpiszonekx4";
|
||||
repo = "curseforge-server-downloader";
|
||||
flake = false;
|
||||
};
|
||||
##
|
||||
|
||||
## Overlays
|
||||
gpu-screen-recorder-src = {
|
||||
type = "git";
|
||||
url = "https://repo.dec05eba.com/gpu-screen-recorder";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
libratbag-src = {
|
||||
type = "github";
|
||||
owner = "libratbag";
|
||||
repo = "libratbag";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
piper-src = {
|
||||
type = "github";
|
||||
owner = "libratbag";
|
||||
repo = "piper";
|
||||
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;
|
||||
};
|
||||
##
|
||||
|
||||
## Theme sources
|
||||
jellyfin-ultrachromic-src = {
|
||||
type = "github";
|
||||
owner = "CTalvio";
|
||||
repo = "Ultrachromic";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
bat-theme-src = {
|
||||
type = "github";
|
||||
flake = false;
|
||||
owner = "matt1432";
|
||||
repo = "bat";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
firefox-gx-src = {
|
||||
type = "github";
|
||||
owner = "Godiesc";
|
||||
repo = "firefox-gx";
|
||||
ref = "v.9.1";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
git-theme-src = {
|
||||
bazarr-bulk = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "matt1432";
|
||||
repo = "bazarr-bulk";
|
||||
type = "github";
|
||||
owner = "dracula";
|
||||
repo = "git";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
gtk-theme-src = {
|
||||
caddy-plugins = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "matt1432";
|
||||
repo = "nixos-caddy-cloudflare";
|
||||
type = "github";
|
||||
owner = "dracula";
|
||||
repo = "gtk";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
nvim-theme-src = {
|
||||
type = "github";
|
||||
owner = "Mofiqul";
|
||||
repo = "dracula.nvim";
|
||||
curseforge-server-downloader-src = {
|
||||
flake = false;
|
||||
};
|
||||
|
||||
plymouth-theme-src = {
|
||||
owner = "Malpiszonekx4";
|
||||
repo = "curseforge-server-downloader";
|
||||
type = "github";
|
||||
};
|
||||
dracula-plymouth-src = {
|
||||
flake = false;
|
||||
owner = "matt1432";
|
||||
repo = "dracula-plymouth";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
xresources-theme-src = {
|
||||
type = "github";
|
||||
};
|
||||
eisa-scripts-src = {
|
||||
flake = false;
|
||||
owner = "Eisa01";
|
||||
repo = "mpv-scripts";
|
||||
type = "github";
|
||||
};
|
||||
firefox-gx-src = {
|
||||
flake = false;
|
||||
owner = "Godiesc";
|
||||
ref = "v.9.1";
|
||||
repo = "firefox-gx";
|
||||
type = "github";
|
||||
};
|
||||
flakegen.url = "github:jorsn/flakegen";
|
||||
git-theme-src = {
|
||||
flake = false;
|
||||
owner = "dracula";
|
||||
repo = "git";
|
||||
type = "github";
|
||||
};
|
||||
gpu-screen-recorder-src = {
|
||||
flake = false;
|
||||
type = "git";
|
||||
url = "https://repo.dec05eba.com/gpu-screen-recorder";
|
||||
};
|
||||
grim-hyprland = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "eriedaberrie";
|
||||
repo = "grim-hyprland";
|
||||
type = "github";
|
||||
};
|
||||
gtk-session-lock = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "Cu3PO42";
|
||||
repo = "gtk-session-lock";
|
||||
type = "github";
|
||||
};
|
||||
gtk-theme-src = {
|
||||
flake = false;
|
||||
owner = "dracula";
|
||||
repo = "gtk";
|
||||
type = "github";
|
||||
};
|
||||
headscale = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "juanfont";
|
||||
repo = "headscale";
|
||||
rev = "fef8261339899fe526777a7aa42df57ca02021c5";
|
||||
type = "github";
|
||||
};
|
||||
home-manager = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "nix-community";
|
||||
repo = "home-manager";
|
||||
type = "github";
|
||||
};
|
||||
hypr-official-plugins = {
|
||||
inputs.hyprland.follows = "hyprland";
|
||||
owner = "hyprwm";
|
||||
repo = "hyprland-plugins";
|
||||
type = "github";
|
||||
};
|
||||
hypridle = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "hyprwm";
|
||||
repo = "hypridle";
|
||||
type = "github";
|
||||
};
|
||||
hyprland = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
submodules = true;
|
||||
type = "git";
|
||||
url = "https://github.com/hyprwm/Hyprland";
|
||||
};
|
||||
jellyfin-flake = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "matt1432";
|
||||
repo = "nixos-jellyfin";
|
||||
type = "github";
|
||||
};
|
||||
jellyfin-ultrachromic-src = {
|
||||
flake = false;
|
||||
owner = "CTalvio";
|
||||
repo = "Ultrachromic";
|
||||
type = "github";
|
||||
};
|
||||
libratbag-src = {
|
||||
flake = false;
|
||||
owner = "libratbag";
|
||||
repo = "libratbag";
|
||||
type = "github";
|
||||
};
|
||||
modernx-src = {
|
||||
flake = false;
|
||||
owner = "cyl0";
|
||||
repo = "ModernX";
|
||||
type = "github";
|
||||
};
|
||||
mpv-persist-properties-src = {
|
||||
flake = false;
|
||||
owner = "d87";
|
||||
repo = "mpv-persist-properties";
|
||||
type = "github";
|
||||
};
|
||||
mpv-pointer-event-src = {
|
||||
flake = false;
|
||||
owner = "christoph-heinrich";
|
||||
repo = "mpv-pointer-event";
|
||||
type = "github";
|
||||
};
|
||||
mpv-touch-gestures-src = {
|
||||
flake = false;
|
||||
owner = "christoph-heinrich";
|
||||
repo = "mpv-touch-gestures";
|
||||
type = "github";
|
||||
};
|
||||
neovim-nightly = {
|
||||
owner = "nix-community";
|
||||
repo = "neovim-nightly-overlay";
|
||||
type = "github";
|
||||
};
|
||||
nh = {
|
||||
owner = "viperML";
|
||||
repo = "nh";
|
||||
type = "github";
|
||||
};
|
||||
nix-eval-jobs = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "nix-community";
|
||||
ref = "release-2.21";
|
||||
repo = "nix-eval-jobs";
|
||||
type = "github";
|
||||
};
|
||||
nix-fast-build = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "Mic92";
|
||||
repo = "nix-fast-build";
|
||||
type = "github";
|
||||
};
|
||||
nix-gaming = {
|
||||
owner = "fufexan";
|
||||
repo = "nix-gaming";
|
||||
type = "github";
|
||||
};
|
||||
nix-index-db = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "Mic92";
|
||||
repo = "nix-index-database";
|
||||
type = "github";
|
||||
};
|
||||
nix-melt = {
|
||||
owner = "nix-community";
|
||||
repo = "nix-melt";
|
||||
type = "github";
|
||||
};
|
||||
nix-on-droid = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "nix-community";
|
||||
repo = "nix-on-droid";
|
||||
type = "github";
|
||||
};
|
||||
nixd = {
|
||||
owner = "nix-community";
|
||||
repo = "nixd";
|
||||
type = "github";
|
||||
};
|
||||
nixpkgs = {
|
||||
owner = "NixOS";
|
||||
ref = "nixos-unstable";
|
||||
repo = "nixpkgs";
|
||||
type = "github";
|
||||
};
|
||||
nixpkgs-wayland = {
|
||||
owner = "nix-community";
|
||||
repo = "nixpkgs-wayland";
|
||||
type = "github";
|
||||
};
|
||||
nms = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "matt1432";
|
||||
repo = "nixos-minecraft-servers";
|
||||
type = "github";
|
||||
};
|
||||
nur = {
|
||||
owner = "nix-community";
|
||||
repo = "NUR";
|
||||
type = "github";
|
||||
};
|
||||
nurl = {
|
||||
owner = "nix-community";
|
||||
repo = "nurl";
|
||||
type = "github";
|
||||
};
|
||||
nvim-theme-src = {
|
||||
flake = false;
|
||||
owner = "Mofiqul";
|
||||
repo = "dracula.nvim";
|
||||
type = "github";
|
||||
};
|
||||
pam-fprint-grosshack-src = {
|
||||
flake = false;
|
||||
owner = "mishakmak";
|
||||
repo = "pam-fprint-grosshack";
|
||||
type = "gitlab";
|
||||
};
|
||||
pcsd = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "matt1432";
|
||||
repo = "nixos-pcsd";
|
||||
type = "github";
|
||||
};
|
||||
piper-src = {
|
||||
flake = false;
|
||||
owner = "libratbag";
|
||||
repo = "piper";
|
||||
type = "github";
|
||||
};
|
||||
pokemon-colorscripts-src = {
|
||||
flake = false;
|
||||
owner = "phoneybadger";
|
||||
repo = "pokemon-colorscripts";
|
||||
type = "gitlab";
|
||||
};
|
||||
secrets = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
type = "git";
|
||||
url = "ssh://git@git.nelim.org/matt1432/nixos-secrets";
|
||||
};
|
||||
sops-nix = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "Mic92";
|
||||
repo = "sops-nix";
|
||||
type = "github";
|
||||
};
|
||||
stylelint-lsp = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "matt1432";
|
||||
repo = "stylelint-lsp";
|
||||
type = "github";
|
||||
};
|
||||
subsync = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "matt1432";
|
||||
repo = "subsync";
|
||||
rev = "ee9e1592ae4ec7c694d8857aa72be079d81ea209";
|
||||
type = "github";
|
||||
};
|
||||
trash-d-src = {
|
||||
flake = false;
|
||||
owner = "rushsteve1";
|
||||
repo = "trash-d";
|
||||
type = "github";
|
||||
};
|
||||
vimplugin-easytables-src = {
|
||||
flake = false;
|
||||
owner = "Myzel394";
|
||||
repo = "easytables.nvim";
|
||||
type = "github";
|
||||
};
|
||||
vimplugin-ts-error-translator-src = {
|
||||
flake = false;
|
||||
owner = "dmmulroy";
|
||||
repo = "ts-error-translator.nvim";
|
||||
type = "github";
|
||||
};
|
||||
wpaperd = {
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
owner = "danyspin97";
|
||||
repo = "wpaperd";
|
||||
type = "github";
|
||||
};
|
||||
xresources-src = {
|
||||
flake = false;
|
||||
owner = "dracula";
|
||||
repo = "xresources";
|
||||
flake = false;
|
||||
type = "github";
|
||||
};
|
||||
##
|
||||
#
|
||||
};
|
||||
}
|
||||
outputs = inputs: inputs.flakegen ./flake.in.nix inputs;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue