Compare commits

...

7 Commits

Author SHA1 Message Date
Eriq Taing b38d989637 Move nautilus, ark roller, clipboard, and thumbnailers to system 2026-09-15 20:32:20 -04:00
Eriq Taing 5c9b4683f2 Revert stylix firefox customization 2026-09-13 14:04:39 -04:00
Eriq Taing c8e449b9b7 Add stylix to firefox profile 2026-09-13 13:50:40 -04:00
Eriq Taing ba7d998226 Switch from hyprlauncher to rofi 2026-09-08 19:41:56 -04:00
Eriq Taing fff0986926 Removed extraneous terms in flake 2026-09-08 15:56:29 -04:00
Eriq Taing dc0fb5c545 Removed helium 2026-09-08 15:55:51 -04:00
Eriq Taing 0606902ab0 Added helium browser
Added for future reference
2026-09-08 15:55:21 -04:00
2 changed files with 36 additions and 41 deletions
+36 -21
View File
@@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, inputs, ... }:
{ {
imports = [ imports = [
@@ -45,8 +45,6 @@
nixd nixd
lua-language-server lua-language-server
# applications # applications
nautilus
file-roller
pwvucontrol pwvucontrol
waytrogen waytrogen
losslesscut losslesscut
@@ -54,27 +52,10 @@
r2modman r2modman
mission-center mission-center
localsend localsend
# clipboard
wl-clipboard
# theming # theming
bibata-cursors bibata-cursors
# qt6 theming # qt6 theming
qt6Packages.qt6ct qt6Packages.qt6ct
# thumbnailers
ffmpeg-headless
ffmpegthumbnailer
gdk-pixbuf
trash-cli
(writeTextFile {
name = "raw-embedded-jpeg-thumbnailer";
destination = "/share/thumbnailers/raw-embedded-jpeg.thumbnailer";
text = ''
[Thumbnailer Entry]
TryExec=gdk-pixbuf-thumbnailer
Exec=gdk-pixbuf-thumbnailer -s %s %u %o
MimeType=image/x-canon-crw;image/x-canon-cr2;image/x-canon-cr3;image/x-adobe-dng;image/x-dng;
'';
})
awww awww
llama-cpp-rocm llama-cpp-rocm
pi-coding-agent pi-coding-agent
@@ -84,7 +65,6 @@
grim grim
slurp slurp
ignition ignition
hyprlauncher
]; ];
# theming # theming
@@ -103,6 +83,31 @@
dark = "Papirus-Dark"; dark = "Papirus-Dark";
light = "Papirus-Light"; light = "Papirus-Light";
}; };
fonts = {
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
monospace = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans Mono";
};
emoji = {
package = pkgs.noto-fonts-color-emoji;
name = "Noto Color Emoji";
};
sizes = {
popups = 18;
};
};
}; };
# Services # Services
@@ -160,8 +165,18 @@
}; };
}; };
}; };
rofi = {
enable = true;
modes = [
"drun"
];
extraConfig = {
show-icons = true;
};
};
libreoffice.enable = true; libreoffice.enable = true;
kitty.enable = true; kitty.enable = true;
firefox.enable = true;
}; };
nixpkgs.config = { nixpkgs.config = {
-20
View File
@@ -2,26 +2,6 @@
{ {
systemd.user.services = { systemd.user.services = {
hyprlauncher = {
Unit = {
Description = "A launcher for the hypr ecosystem.";
After = [
"graphical-session.target"
"wayland-session@hyprland.desktop.target"
];
};
Service = {
ExecStart = "${pkgs.hyprlauncher}/bin/hyprlauncher -d";
Restart = "on-failure";
Slice = "app-graphical.slice";
};
Install = {
WantedBy = [
"graphical-session.target"
"wayland-session@hyprland.desktop.target"
];
};
};
awww = { awww = {
Unit = { Unit = {
Description = "An Answer to your Wayland Wallpaper Woes"; Description = "An Answer to your Wayland Wallpaper Woes";