Merge branch 'master' into fixing

This commit is contained in:
Filippo Berto 2021-05-22 18:11:51 +02:00
commit 492ae9d92a
11 changed files with 179 additions and 7 deletions

5
modules/jq.nix Normal file
View file

@ -0,0 +1,5 @@
{
programs.jq = {
enable = true;
};
}

10
modules/keychain.nix Normal file
View file

@ -0,0 +1,10 @@
{
programs.keychain = {
enable = true;
keys = [ "id_ed25519" "bitbucket" "github" "gitlab" "heroku" "local" ];
agents = [ "gpg" "ssh" ];
enableBashIntegration = true;
enableZshIntegration = true;
enableXsessionIntegration = true;
};
}

5
modules/man.nix Normal file
View file

@ -0,0 +1,5 @@
{
programs.man = {
enable = true;
};
}

7
modules/nix-index.nix Normal file
View file

@ -0,0 +1,7 @@
{
programs.nix-index = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
}

5
modules/noti.nix Normal file
View file

@ -0,0 +1,5 @@
{
programs.noti = {
enable = true;
};
}

12
modules/obs-studio.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs; [
# obs-linuxbrowser
obs-v4l2sink
obs-gstreamer
obs-move-transition
];
};
}

7
modules/pazi.nix Normal file
View file

@ -0,0 +1,7 @@
{
programs.pazi = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
}

View file

@ -1,15 +1,24 @@
{
programs.rofi = {
enable = true;
enable = true;
# extraConfig = {
# modi = "drun,run,ssh,window";
# theme = "nord";
# };
extraConfig = "
modi = drun,run,ssh,window
theme = nord
";
# extraConfig = builtins.concatStringsSep "\n" [
# "modi = drun,run,ssh,window"
# "theme = nord"
# ];
};
xdg.configFile."rofi/config.rasi".text = ''
configuration {
location: 0;
yoffset: 0;
xoffset: 0;
modi: "drun,run,ssh,window";
theme: "nord";
}
'';
xdg.configFile."rofi/nord.rasi".source = ../configs/rofi/nord.rasi;
}