Stabilize server and desktop module
- Exluce hyprland for now
This commit is contained in:
parent
36ae7b2141
commit
5a593616f8
16 changed files with 15 additions and 11 deletions
22
modules/home/cli/atuin/default.nix
Normal file
22
modules/home/cli/atuin/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.cli.atuin;
|
||||
in
|
||||
{
|
||||
options.modules.cli.atuin = {
|
||||
enable = mkEnableOption ''
|
||||
Enable atuin with my custom configurations
|
||||
'';
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
programs.atuin = {
|
||||
enable = true;
|
||||
settings = {
|
||||
# Uncomment this to use your instance
|
||||
# sync_address = "https://majiy00-shell.fly.dev";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
10
modules/home/cli/default.nix
Normal file
10
modules/home/cli/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./atuin
|
||||
./direnv
|
||||
./git
|
||||
./zsh
|
||||
];
|
||||
}
|
18
modules/home/cli/direnv/default.nix
Normal file
18
modules/home/cli/direnv/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.cli.direnv;
|
||||
in
|
||||
{
|
||||
options.modules.cli.direnv = {
|
||||
enable = mkEnableOption ''
|
||||
Enable direnv with my custom configurations
|
||||
'';
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
22
modules/home/cli/git/default.nix
Normal file
22
modules/home/cli/git/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.cli.git;
|
||||
in
|
||||
{
|
||||
options.modules.cli.git = {
|
||||
enable = mkEnableOption ''
|
||||
Enable git with my custom configurations
|
||||
'';
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Florian RICHER";
|
||||
userEmail = "florian.richer@protonmail.com";
|
||||
|
||||
# signing.signByDefault = true;
|
||||
};
|
||||
};
|
||||
}
|
37
modules/home/cli/zsh/default.nix
Normal file
37
modules/home/cli/zsh/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.cli.zsh;
|
||||
in
|
||||
{
|
||||
options.modules.cli.zsh = {
|
||||
enable = mkEnableOption ''
|
||||
Enable zsh with my custom configurations
|
||||
'';
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
autosuggestion.enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
|
||||
initExtra = ''
|
||||
[[ ! -f ${./p10k.zsh} ]] || source ${./p10k.zsh}
|
||||
'';
|
||||
|
||||
plugins = with pkgs; [
|
||||
{
|
||||
file = "powerlevel10k.zsh-theme";
|
||||
name = "powerlevel10k";
|
||||
src = "${zsh-powerlevel10k}/share/zsh-powerlevel10k";
|
||||
}
|
||||
{
|
||||
file = "p10k.zsh";
|
||||
name = "powerlevel10k-config";
|
||||
src = zsh-powerlevel10k;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
1738
modules/home/cli/zsh/p10k.zsh
Normal file
1738
modules/home/cli/zsh/p10k.zsh
Normal file
File diff suppressed because it is too large
Load diff
|
@ -2,10 +2,5 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./chromium
|
||||
./flatpak
|
||||
./jetbrainsToolbox
|
||||
./kitty
|
||||
./vscode
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue