Skip to content

Commit

Permalink
🔥 (deadnix): remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
elythh committed Apr 19, 2024
1 parent 200410e commit fad9a66
Show file tree
Hide file tree
Showing 13 changed files with 101 additions and 177 deletions.
147 changes: 57 additions & 90 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions home/shared/icons/reversal.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
gdk-pixbuf,
optipng,
librsvg,
gtk3,
pantheon,
gnome,
gnome-icon-theme,
hicolor-icon-theme,
pkgs,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "Reversal";
name = "Reversal";

Expand Down
11 changes: 6 additions & 5 deletions hosts/hp/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@
{
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [(modulesPath + "/installer/scan/not-detected.nix")];

boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod"];
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [];
boot = {
initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod"];
initrd.kernelModules = [];
kernelModules = ["kvm-intel"];
extraModulePackages = [];
};

fileSystems."/" = {
device = "/dev/disk/by-uuid/a419de40-cbcb-4fe2-abfd-73be6e0bac9c";
Expand Down
2 changes: 1 addition & 1 deletion modules/home/core/gtk.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{pkgs, ...}: {
{
gtk = {
enable = true;
gtk3.extraConfig.gtk-decoration-layout = "menu:";
Expand Down
1 change: 1 addition & 0 deletions modules/home/core/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
colordiff
copyq
docker-compose
deadnix
easyeffects
eza
feh
Expand Down
4 changes: 1 addition & 3 deletions modules/home/opt/bin/screenshot/captureArea.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{config, ...}: let
color = config.colorscheme.palette;
in ''
_: ''
#!/usr/bin/env zsh
sss --area "$(slurp)" -o raw | satty --early-exit -f - --copy-command wl-copy --fullscreen --output-filename ~/Pictures/Screenshots/satty-$(date '+%Y%m%d-%H:%M:%S').png
''
Loading

0 comments on commit fad9a66

Please sign in to comment.