mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
feat: add nix-index-database and comma
This commit is contained in:
parent
48752ec0b2
commit
8632afc3c2
4 changed files with 41 additions and 9 deletions
21
flake.lock
21
flake.lock
|
@ -667,6 +667,26 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nix-index-database": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1729999765,
|
||||||
|
"narHash": "sha256-LYsavZXitFjjyETZoij8usXjTa7fa9AIF3Sk3MJSX+Y=",
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "nix-index-database",
|
||||||
|
"rev": "0e3a8778c2ee218eff8de6aacf3d2fa6c33b2d4f",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "nix-index-database",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nixCats": {
|
"nixCats": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1730202844,
|
"lastModified": 1730202844,
|
||||||
|
@ -838,6 +858,7 @@
|
||||||
"lix-module": "lix-module",
|
"lix-module": "lix-module",
|
||||||
"nix-darwin": "nix-darwin",
|
"nix-darwin": "nix-darwin",
|
||||||
"nix-homebrew": "nix-homebrew",
|
"nix-homebrew": "nix-homebrew",
|
||||||
|
"nix-index-database": "nix-index-database",
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2",
|
||||||
"spicetify": "spicetify",
|
"spicetify": "spicetify",
|
||||||
"stylix": "stylix",
|
"stylix": "stylix",
|
||||||
|
|
|
@ -73,6 +73,11 @@
|
||||||
|
|
||||||
stylix.url = "github:danth/stylix";
|
stylix.url = "github:danth/stylix";
|
||||||
|
|
||||||
|
nix-index-database = {
|
||||||
|
url = "github:nix-community/nix-index-database";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
wallpapers = {
|
wallpapers = {
|
||||||
url = "git+https://code.youwen.dev/youwen5/wallpapers";
|
url = "git+https://code.youwen.dev/youwen5/wallpapers";
|
||||||
flake = false;
|
flake = false;
|
||||||
|
|
|
@ -26,7 +26,8 @@
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
};
|
};
|
||||||
home-manager.users.youwen = {
|
home-manager.users.youwen = {
|
||||||
imports = [
|
imports =
|
||||||
|
[
|
||||||
./home-manager-extras
|
./home-manager-extras
|
||||||
../../users/youwen/linux/laptop
|
../../users/youwen/linux/laptop
|
||||||
../../users/youwen/linux/packages/x86_64
|
../../users/youwen/linux/packages/x86_64
|
||||||
|
@ -34,7 +35,10 @@
|
||||||
../../users/youwen/common
|
../../users/youwen/common
|
||||||
../../users/youwen/linux/spicetify
|
../../users/youwen/linux/spicetify
|
||||||
../../users/youwen/common/fastfetch
|
../../users/youwen/common/fastfetch
|
||||||
];
|
]
|
||||||
|
++ (with inputs; [
|
||||||
|
nix-index-database.hmModules.nix-index
|
||||||
|
]);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -156,6 +156,8 @@ in
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.nix-index-database.comma.enable = true;
|
||||||
|
|
||||||
programs.fd.enable = true;
|
programs.fd.enable = true;
|
||||||
|
|
||||||
programs.btop = {
|
programs.btop = {
|
||||||
|
|
Loading…
Reference in a new issue