nixdots/flake.nix

59 lines
1.3 KiB
Nix
Raw Normal View History

2024-02-21 19:50:17 +00:00
{
2024-02-24 20:56:31 +00:00
description = "ItsDrike's NixOS configuration";
2024-02-21 19:50:17 +00:00
2024-02-24 20:56:31 +00:00
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-04-07 16:28:15 +00:00
2024-03-01 13:42:26 +00:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-04-07 16:28:15 +00:00
# doesn't offer much above properly used symlinks but it is convenient
impermanence.url = "github:nix-community/impermanence";
2024-04-12 16:25:26 +00:00
# secure-boot support
lanzaboote = {
url = "github:nix-community/lanzaboote/v0.3.0";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-06-10 19:58:06 +00:00
2024-06-10 21:01:31 +00:00
# Spotify + themes
2024-06-10 19:58:06 +00:00
spicetify = {
url = "github:Gerg-L/spicetify-nix";
2024-06-10 19:58:06 +00:00
inputs.nixpkgs.follows = "nixpkgs";
};
2024-06-10 21:01:31 +00:00
# Sandbox wrappers for programs
nixpak = {
url = "github:nixpak/nixpak";
inputs.nixpkgs.follows = "nixpkgs";
};
# Schizophrenic Firefox
schizofox = {
url = "github:schizofox/schizofox";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
# Application launcher
walker = {
url = "github:abenz1267/walker";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
2024-02-24 20:56:31 +00:00
};
2024-02-21 19:50:17 +00:00
2024-07-16 09:12:32 +00:00
outputs = {
self,
nixpkgs,
...
} @ inputs: {
nixosConfigurations = import ./hosts {inherit inputs;};
devShells = import ./shells {inherit inputs;};
2024-02-28 22:40:50 +00:00
};
2024-02-21 19:50:17 +00:00
}