mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:49:42 +00:00
32 lines
782 B
Nix
32 lines
782 B
Nix
{
|
|
description = "ItsDrike's NixOS configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
# doesn't offer much above properly used symlinks but it is convenient
|
|
impermanence.url = "github:nix-community/impermanence";
|
|
|
|
# secure-boot support
|
|
lanzaboote = {
|
|
url = "github:nix-community/lanzaboote/v0.3.0";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
spicetify = {
|
|
url = "github:the-argus/spicetify-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = {self, nixpkgs, ...} @ inputs: let
|
|
in {
|
|
nixosConfigurations = import ./hosts {inherit nixpkgs inputs self;};
|
|
};
|
|
}
|