This commit is contained in:
fwastring 2025-06-05 12:47:02 +02:00
parent 4bdaf9a8a0
commit dfad0e4206
6 changed files with 14 additions and 3 deletions

View file

@ -123,7 +123,7 @@
(st.overrideAttrs (oldAttrs: rec { (st.overrideAttrs (oldAttrs: rec {
src = builtins.fetchGit { src = builtins.fetchGit {
url = "https://github.com/fwastring/st"; url = "https://github.com/fwastring/st";
rev = "9b95aafa2bcb3f4f991a5fc2c7cb939ce3f550b2"; rev = "de286ce570c23e037a0e5fb7d84ac7226aef1259";
}; };
buildInputs = oldAttrs.buildInputs ++ [ xorg.libX11.dev xorg.libXft imlib2 xorg.libXinerama pkg-config]; buildInputs = oldAttrs.buildInputs ++ [ xorg.libX11.dev xorg.libXft imlib2 xorg.libXinerama pkg-config];
})) }))

View file

@ -31,5 +31,6 @@
imagemagick imagemagick
pandoc pandoc
texliveFull texliveFull
mpv
]; ];
} }

View file

@ -11,6 +11,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# System # System
libnotify
xsel xsel
unzip unzip
zip zip

View file

@ -76,7 +76,15 @@
inherit inputs outputs; inherit inputs outputs;
myhostname = "jobb"; myhostname = "jobb";
}; };
modules = [ ./maskiner/jobb/configuration.nix ]; modules = [
(
{ nixpkgs, ... }:
{
nixpkgs.overlays = [ overlay-unstable ];
}
)
./maskiner/jobb/configuration.nix
];
}; };
work-desktop = nixpkgs.lib.nixosSystem { work-desktop = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {

View file

@ -8,6 +8,7 @@
global = { global = {
width = 300; width = 300;
height = 300; height = 300;
follow = "keyboard";
offset = "30x50"; offset = "30x50";
origin = "top-right"; origin = "top-right";
transparency = 5; transparency = 5;

View file

@ -8,7 +8,7 @@ let
dwm = pkgs.dwm.overrideAttrs (old: { dwm = pkgs.dwm.overrideAttrs (old: {
src = builtins.fetchGit { src = builtins.fetchGit {
url = "https://github.com/FredzyW/dwm-conf.git"; url = "https://github.com/FredzyW/dwm-conf.git";
rev = "e9d94d70c3865a1289c20382df21acc3a138ed88"; rev = "eaf3279653491212fe9945d41938bfcaba990d64";
}; };
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
xorg.libX11.dev xorg.libX11.dev