rework desktop and programs aspects

This commit is contained in:
William 2026-02-15 14:58:37 -03:00
parent 5d1b54c8bf
commit 4e78805bda
14 changed files with 307 additions and 527 deletions

View file

@ -1,7 +1,7 @@
{ ... }:
{
flake.modules.nixos.programs-graphics =
flake.modules.nixos.graphics =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [

View file

@ -2,7 +2,7 @@
{
flake.modules = {
nixos.programs-media =
nixos.media =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [

View file

@ -1,7 +1,7 @@
{ ... }:
{
flake.modules.nixos.programs-office =
flake.modules.nixos.office =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [

View file

@ -1,62 +0,0 @@
{ ... }:
{
flake.modules = {
nixos.programs-utilities =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
ghostty
gnome-disk-utility
mission-center
nautilus
p7zip
rclone
unrar
# Desktop Integration
adwaita-icon-theme
junction
libfido2
toggleaudiosink
# Xwayland Support
xwayland-satellite
];
services.flatpak.packages = [
"com.github.tchx84.Flatseal"
"com.rustdesk.RustDesk"
];
};
homeManager.programs-utilities =
{ pkgs, ... }:
{
programs = {
ghostty = {
enable = true;
settings = {
cursor-style = "block";
shell-integration-features = "no-cursor";
cursor-style-blink = false;
custom-shader = "${builtins.fetchurl {
url = "https://raw.githubusercontent.com/hackr-sh/ghostty-shaders/cb6eb4b0d1a3101c869c62e458b25a826f9dcde3/cursor_blaze.glsl";
sha256 = "sha256:0g2lgqjdrn3c51glry7x2z30y7ml0y61arl5ykmf4yj0p85s5f41";
}}";
bell-features = "";
gtk-titlebar-style = "tabs";
keybind = [ "shift+enter=text:\\x1b\\r" ];
};
};
password-store = {
enable = true;
package = pkgs.pass-wayland;
};
};
home.sessionVariables = {
TERMINAL = "ghostty";
};
};
};
}

View file

@ -1,7 +1,7 @@
{ ... }:
{
flake.modules.nixos.programs-web =
flake.modules.nixos.web =
{
inputs,
pkgs,