Initial commit of NixOS configuration

This commit is contained in:
2025-12-30 03:07:28 +00:00
commit 3272868b58
25 changed files with 779 additions and 0 deletions

25
components/utils.nix Normal file
View File

@@ -0,0 +1,25 @@
{pkgs, ...}: {
programs.rofi = {
enable = true;
package = pkgs.rofi.override {
plugins = with pkgs; [
rofi-calc
];
};
extraConfig = {
modi = "drun,calc,run";
show-icons = true;
drun-display-format = "{icon} {name}";
disable-history = false;
hide-scrollbar = true;
};
};
home.packages = with pkgs; [
hyprshot
wl-clipboard
networkmanagerapplet
];
services.hyprpolkitagent.enable = true;
}