From 1aa0ab9044e9d6f90d9b13d0abd90da13254fcc1 Mon Sep 17 00:00:00 2001 From: kenji Date: Mon, 11 Aug 2025 22:58:40 -0500 Subject: [PATCH] fixed missing icons --- flake.lock | 30 ++++++++++++++++++++++++++---- hosts/hakase/configuration.nix | 1 + modules/default/dev.nix | 5 ++++- 3 files changed, 31 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index 65a7423..5d98f23 100644 --- a/flake.lock +++ b/flake.lock @@ -1001,6 +1001,7 @@ "home-manager": "home-manager_3", "hyprland": "hyprland_2", "matugen": "matugen", + "nixos-fonts": "nixos-fonts", "nixpkgs": [ "nixpkgs" ], @@ -1008,11 +1009,11 @@ "quickshell": "quickshell" }, "locked": { - "lastModified": 1754958588, - "narHash": "sha256-8H83MTGs9j5JZ+10NesfMG72jkE+0GvTJJsWfkM6Xzs=", + "lastModified": 1754971043, + "narHash": "sha256-ah1dzxDAL+PJ0/XxN/tlxlShj15RBEzXY5QT3hjgjYI=", "ref": "refs/heads/main", - "rev": "db7d0a00f0ca0a2297b146323835f81965b8be88", - "revCount": 3683, + "rev": "40f99811677c13a90a9cb85d883b26493a2db165", + "revCount": 3713, "type": "git", "url": "https://git.sakamoto.dev/kenji/illogical-impulse.git" }, @@ -1204,6 +1205,27 @@ "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": { "inputs": { "flake-parts": "flake-parts", diff --git a/hosts/hakase/configuration.nix b/hosts/hakase/configuration.nix index 0faccb7..cab8290 100644 --- a/hosts/hakase/configuration.nix +++ b/hosts/hakase/configuration.nix @@ -26,6 +26,7 @@ wl-clipboard wget solaar + dualsensectl ]; console = { diff --git a/modules/default/dev.nix b/modules/default/dev.nix index c576eb0..211f641 100644 --- a/modules/default/dev.nix +++ b/modules/default/dev.nix @@ -1,5 +1,8 @@ -{ +{pkgs, ...}: { imports = [ ../../packages/python/default.nix ]; + environment.systemPackages = with pkgs; [ + p7zip + ]; }