NiksOS/flake.nix
Jurn Wubben 6abd43ffbb Updated graphics to support intel and nvidia (laptop gpu without prime)
Added immich

Updated cfile and smaller changes

Updated transfer-sh password
2025-04-17 17:59:44 +00:00

62 lines
1.5 KiB
Nix

{
description = "Nix is here, nix is everywhere, nix is everything.";
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux"];
imports = [
./hosts
];
perSystem = {
config,
pkgs,
...
}: {
devShells.default = pkgs.mkShell {
packages = [
pkgs.alejandra
pkgs.git
];
name = "dots";
DIRENV_LOG_FORMAT = "";
};
formatter = pkgs.alejandra;
};
};
inputs = {
# Nixpkgs and other core shit
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small"; # build error unrelated to config.
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11-small"; # build error unrelated to config.
flake-parts.url = "github:hercules-ci/flake-parts";
nur-xddxdd = { # FIXME: Used by flaresolverr as the nixpkgs version is broken.
url = "github:xddxdd/nur-packages";
inputs.nixpkgs.follows = "nixpkgs";
};
hm = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
# Ricing
stylix.url = "github:danth/stylix";
nvf = {
url = "github:notashelf/nvf";
inputs.nixpkgs.follows = "nixpkgs";
};
nixcord.url = "github:kaylorben/nixcord";
somcli.url = "github:jsw08/somcli";
dcbot = {
url = "github:jsw08/dcbot";
flake = false;
};
agenix.url = "github:ryantm/agenix";
};
}