chore: remove catppuccin and nix-gaming inputs, remove desktop/vm hosts, add nix-index-database for command-not-found

This commit is contained in:
Ahwx 2025-07-26 20:07:52 +02:00
parent 9d63509ad9
commit 23ab37bf70

View file

@ -4,7 +4,6 @@
inputs = { inputs = {
agenix.url = "github:ryantm/agenix"; agenix.url = "github:ryantm/agenix";
alejandra.url = "github:kamadorueda/alejandra/3.0.0"; alejandra.url = "github:kamadorueda/alejandra/3.0.0";
catppuccin.url = "github:catppuccin/nix";
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -25,14 +24,14 @@
nur.url = "github:nix-community/NUR"; nur.url = "github:nix-community/NUR";
nixos-hardware.url = "github:nixos/nixos-hardware"; nixos-hardware.url = "github:nixos/nixos-hardware";
nixvim.url = "github:ahwxorg/nixvim-config"; nixvim.url = "github:ahwxorg/nixvim-config";
nix-gaming.url = "github:fufexan/nix-gaming"; nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = outputs =
{ {
self, self,
nixpkgs, nixpkgs,
catppuccin,
agenix, agenix,
... ...
}@inputs: }@inputs:
@ -48,16 +47,6 @@
{ {
overlays.default = overlays.addition; overlays.default = overlays.addition;
nixosConfigurations = { nixosConfigurations = {
desktop = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
(import ./hosts/desktop)
];
specialArgs = {
host = "desktop";
inherit self inputs username;
};
};
sakura = nixpkgs.lib.nixosSystem { sakura = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
modules = [ modules = [
@ -124,17 +113,6 @@
inherit self inputs username; inherit self inputs username;
}; };
}; };
vm = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
(import ./hosts/vm)
];
specialArgs = {
host = "vm";
inherit self inputs username;
};
};
}; };
}; };
} }