nixos-framework-laptop-config/flake.nix

51 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2024-12-28 19:33:49 -05:00
{
inputs = {
2025-06-25 05:05:30 -04:00
nix-doom-emacs-unstraightened = {
url = "github:marienz/nix-doom-emacs-unstraightened";
# Optional, to download less. Neither the module nor the overlay uses this input.
inputs.nixpkgs.follows = "";
};
nix-templates = {
url = "git+https://git.xnia.org/evar/nix-templates";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-12-28 19:33:49 -05:00
flake-parts.url = "github:hercules-ci/flake-parts";
2025-03-12 13:01:05 -04:00
vscode-server.url = "github:nix-community/nixos-vscode-server";
2024-12-28 19:33:49 -05:00
nix-std.url = "github:chessai/nix-std";
2024-12-28 19:33:49 -05:00
nixos-hardware.url = "github:NixOS/nixos-hardware";
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
nixos-facter-modules.url = "github:numtide/nixos-facter-modules";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-12-28 19:33:49 -05:00
impermanence.url = "github:nix-community/impermanence";
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
ags.url = "github:Aylur/ags";
anyrun.url = "github:Kirottu/anyrun";
muse-sounds-manager = {
url = "github:thilobillerbeck/muse-sounds-manager-nix/06b0da28c54331d5af73efd2ebf264ce914e5936";
inputs.nixpkgs.follows = "nixpkgs";
};
};
2025-06-25 05:05:30 -04:00
outputs =
inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" ];
2024-12-28 19:33:49 -05:00
imports = [
./systems
./dev-shell
];
};
}