modularized hosts creatorforge.nix
This commit is contained in:
parent
38d653d2ff
commit
43ed213a93
14 changed files with 146 additions and 123 deletions
16
modules/home-manager/dconf-settings.nix
Normal file
16
modules/home-manager/dconf-settings.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, config, lib, ...}:
|
||||
{
|
||||
dconf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
"org/gnome/mutter" = {
|
||||
attach-modal-dialogs = true;
|
||||
dynamic-workspaces = true;
|
||||
edge-tiling = false;
|
||||
experimental-features = [ "scale-monitor-framebuffer" ];
|
||||
focus-change-on-pointer-rest = true;
|
||||
workspaces-only-on-primary = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
7
modules/home-manager/direnv.nix
Normal file
7
modules/home-manager/direnv.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, config, lib, ...}:
|
||||
{
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableZshIntegration = lib.mkDefault true;
|
||||
};
|
||||
}
|
||||
6
modules/home-manager/home-manager.nix
Normal file
6
modules/home-manager/home-manager.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, config, lib, ...}:
|
||||
{
|
||||
programs.home-manager = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
7
modules/home-manager/ncspot.nix
Normal file
7
modules/home-manager/ncspot.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, config, lib, ...}:
|
||||
{
|
||||
programs.ncspot = {
|
||||
enable = true;
|
||||
package = pkgs.ncspot;
|
||||
};
|
||||
}
|
||||
6
modules/home-manager/nushell.nix
Normal file
6
modules/home-manager/nushell.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, config, lib, ...}:
|
||||
{
|
||||
programs.nushell = {
|
||||
enable = false;
|
||||
};
|
||||
}
|
||||
8
modules/home-manager/starship.nix
Normal file
8
modules/home-manager/starship.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, config, lib, ...}:
|
||||
{
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
enableNushellIntegration = false;
|
||||
};
|
||||
}
|
||||
7
modules/home-manager/zellij.nix
Normal file
7
modules/home-manager/zellij.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, config, lib, ...}:
|
||||
{
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
package = pkgs.zellij;
|
||||
};
|
||||
}
|
||||
8
modules/home-manager/zoxide.nix
Normal file
8
modules/home-manager/zoxide.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, config, lib, ...}:
|
||||
{
|
||||
programs.zoxide = {
|
||||
enable = true;
|
||||
enableZshIntegration = lib.mkDefault true;
|
||||
# enableNushellIntegration = false;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue