aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-03-12 00:25:56 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-03-12 00:25:56 +0100
commit45cbd03cf9c4732fa0746a97e9c0cd93806725db (patch)
tree2f0ce8c6c6fb950d606d4a09ee165d326c1e35ca /default.nix
parent2307570f3f0b6cc630589195ef18ad8ed4cddbf0 (diff)
downloadNix-45cbd03cf9c4732fa0746a97e9c0cd93806725db.tar.gz
Nix-45cbd03cf9c4732fa0746a97e9c0cd93806725db.tar.zst
Nix-45cbd03cf9c4732fa0746a97e9c0cd93806725db.zip
Add vnc server programs
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/default.nix b/default.nix
index 5268565..444d29d 100644
--- a/default.nix
+++ b/default.nix
@@ -618,6 +618,12 @@ let
618 '') zippedFiles)} 618 '') zippedFiles)}
619 ''; 619 '';
620 620
621 mypkgs.dwm = dwm.overrideAttrs(old: rec {
622 postPatch = ''
623 cp ${./patches/dwm_config.h} ./config.h
624 '';
625 });
626
621# https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh 627# https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh
622# https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks 628# https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks
623in 629in
@@ -680,4 +686,5 @@ in
680 inherit fetchmail; 686 inherit fetchmail;
681 inherit bc; 687 inherit bc;
682 inherit cpulimit; 688 inherit cpulimit;
689 inherit dmenu st;
683 } 690 }