fixed missing icons

This commit is contained in:
kenji
2025-08-11 22:58:40 -05:00
parent 0f17915e8c
commit 1aa0ab9044
3 changed files with 31 additions and 5 deletions
Generated
+26 -4
View File
@@ -1001,6 +1001,7 @@
"home-manager": "home-manager_3", "home-manager": "home-manager_3",
"hyprland": "hyprland_2", "hyprland": "hyprland_2",
"matugen": "matugen", "matugen": "matugen",
"nixos-fonts": "nixos-fonts",
"nixpkgs": [ "nixpkgs": [
"nixpkgs" "nixpkgs"
], ],
@@ -1008,11 +1009,11 @@
"quickshell": "quickshell" "quickshell": "quickshell"
}, },
"locked": { "locked": {
"lastModified": 1754958588, "lastModified": 1754971043,
"narHash": "sha256-8H83MTGs9j5JZ+10NesfMG72jkE+0GvTJJsWfkM6Xzs=", "narHash": "sha256-ah1dzxDAL+PJ0/XxN/tlxlShj15RBEzXY5QT3hjgjYI=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "db7d0a00f0ca0a2297b146323835f81965b8be88", "rev": "40f99811677c13a90a9cb85d883b26493a2db165",
"revCount": 3683, "revCount": 3713,
"type": "git", "type": "git",
"url": "https://git.sakamoto.dev/kenji/illogical-impulse.git" "url": "https://git.sakamoto.dev/kenji/illogical-impulse.git"
}, },
@@ -1204,6 +1205,27 @@
"type": "github" "type": "github"
} }
}, },
"nixos-fonts": {
"inputs": {
"nixpkgs": [
"illogical-impulse",
"nixpkgs"
]
},
"locked": {
"lastModified": 1754964070,
"narHash": "sha256-eUdHvOqCFdHTgLgEQzUdM1scr39+Ms3VyuvkfuDwCCM=",
"ref": "refs/heads/main",
"rev": "46280cc7717921bff8e7784385a0a073f7e8c8f8",
"revCount": 11,
"type": "git",
"url": "https://git.sakamoto.dev/kenji/nixos-fonts"
},
"original": {
"type": "git",
"url": "https://git.sakamoto.dev/kenji/nixos-fonts"
}
},
"nixovim": { "nixovim": {
"inputs": { "inputs": {
"flake-parts": "flake-parts", "flake-parts": "flake-parts",
+1
View File
@@ -26,6 +26,7 @@
wl-clipboard wl-clipboard
wget wget
solaar solaar
dualsensectl
]; ];
console = { console = {
+4 -1
View File
@@ -1,5 +1,8 @@
{ {pkgs, ...}: {
imports = [ imports = [
../../packages/python/default.nix ../../packages/python/default.nix
]; ];
environment.systemPackages = with pkgs; [
p7zip
];
} }