80 lines
2 KiB
Nix
80 lines
2 KiB
Nix
{
|
|
outputs = inputs:
|
|
inputs.flake-parts.lib.mkFlake {
|
|
inherit inputs;
|
|
} {
|
|
systems = ["x86_64-linux"];
|
|
|
|
imports = [./nix/machines];
|
|
|
|
perSystem = {pkgs, ...}: {
|
|
devShells.default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
alejandra
|
|
nil
|
|
nixd
|
|
git
|
|
just
|
|
home-manager
|
|
sops
|
|
colmena
|
|
git-agecrypt
|
|
inputs.nvfetcher.packages.${pkgs.system}.default
|
|
];
|
|
name = "dots";
|
|
};
|
|
|
|
packages = import ./pkgs {
|
|
inherit pkgs;
|
|
};
|
|
|
|
formatter = pkgs.alejandra;
|
|
};
|
|
};
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
flake-parts = {
|
|
url = "github:hercules-ci/flake-parts";
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
};
|
|
hardware.url = "github:nixos/nixos-hardware";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nvim-nix = {
|
|
url = "github:xunuwu/nvim-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
stylix = {
|
|
url = "github:danth/stylix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
firefox-addons = {
|
|
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
sops-nix = {
|
|
url = "github:Mic92/sops-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nix-index-database = {
|
|
url = "github:Mic92/nix-index-database";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nixos-wsl = {
|
|
url = "github:nix-community/NixOS-WSL/main";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nvfetcher = {
|
|
url = "github:berberman/nvfetcher";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
vpn-confinement.url = "github:Maroka-chan/VPN-Confinement";
|
|
sobercookie = {
|
|
url = "github:xunuwu/sobercookie";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
}
|