nix: Add sdcv

This commit is contained in:
js0ny 2025-10-19 18:12:07 +01:00
parent 608cd05802
commit a9d8bcb500
16 changed files with 267 additions and 112 deletions

View file

@ -3,5 +3,7 @@
chromium
nil
nixd
libnotify
imagemagick
];
}

View file

@ -1,4 +1,4 @@
{pkgs, ...}: {
{...}: {
programs.chromium = {
enable = true;
homepageLocation = "https://duckduckgo.com";

View file

@ -0,0 +1,4 @@
{...}: {
services.displayManager.cosmic-greeter.enable = true;
services.desktopManager.cosmic.enable = true;
}

View file

@ -1,7 +1,22 @@
{...}: {
{
pkgs,
inputs,
...
}: {
programs.hyprland = {
enable = true;
withUWSM = false;
xwayland.enable = true;
};
environment.systemPackages = [
inputs.caelestia-shell.packages.x86_64-linux.default
pkgs.mako
pkgs.rofi-wayland
pkgs.xdg-desktop-portal-wlr
pkgs.xdg-desktop-portal-hyprland
pkgs.hyprpolkitagent
pkgs.cliphist
pkgs.grimblast
];
}

View file

@ -12,5 +12,6 @@
file
unzip
zip
pkg-config
];
}

View file

@ -0,0 +1,5 @@
{inputs, ...}: {
environment.systemPackages = [
inputs.winboat
];
}