Add development module
This commit is contained in:
parent
289bacda37
commit
c5faaa57af
|
@ -79,9 +79,9 @@
|
||||||
./modules/software.nix
|
./modules/software.nix
|
||||||
./modules/networking.nix
|
./modules/networking.nix
|
||||||
./modules/gui.nix
|
./modules/gui.nix
|
||||||
./modules/datasync.nix
|
#./modules/datasync.nix
|
||||||
./modules/audio.nix
|
./modules/audio.nix
|
||||||
#./modules/home.nix
|
./modules/development.nix
|
||||||
./modules/hardware-configuration.nix
|
./modules/hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# Improve nix-shell and direnv integration
|
||||||
|
services.lorri.enable = true;
|
||||||
|
}
|
|
@ -26,7 +26,7 @@
|
||||||
clipman
|
clipman
|
||||||
grim
|
grim
|
||||||
slurp
|
slurp
|
||||||
brillo
|
light
|
||||||
imv
|
imv
|
||||||
kanshi
|
kanshi
|
||||||
redshift-wlr
|
redshift-wlr
|
||||||
|
@ -43,6 +43,9 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Backlight
|
||||||
|
programs.light.enable = true;
|
||||||
|
|
||||||
# Blue light filter
|
# Blue light filter
|
||||||
services.redshift = {
|
services.redshift = {
|
||||||
package = pkgs.redshift-wlr;
|
package = pkgs.redshift-wlr;
|
||||||
|
@ -51,7 +54,9 @@
|
||||||
day = 6500;
|
day = 6500;
|
||||||
night = 5000;
|
night = 5000;
|
||||||
};
|
};
|
||||||
|
extraOptions = [ "-m wayland" "-l manual"];
|
||||||
};
|
};
|
||||||
|
|
||||||
location = {
|
location = {
|
||||||
latitude = 35.89;
|
latitude = 35.89;
|
||||||
longitude = -5.32;
|
longitude = -5.32;
|
||||||
|
|
|
@ -16,6 +16,10 @@
|
||||||
pandoc
|
pandoc
|
||||||
# Text editors
|
# Text editors
|
||||||
neovim
|
neovim
|
||||||
|
emacs
|
||||||
|
ripgrep
|
||||||
|
fd
|
||||||
|
clang
|
||||||
# Terminals
|
# Terminals
|
||||||
tmux
|
tmux
|
||||||
tmuxp
|
tmuxp
|
||||||
|
|
Loading…
Reference in New Issue