2024-05-23 19:02:20 +00:00
|
|
|
{ lib, hostname, inputs, platform, pkgs, ... }:
|
|
|
|
let
|
|
|
|
systemInfo = lib.splitString "-" platform;
|
|
|
|
systemType = builtins.elemAt systemInfo 1;
|
|
|
|
in
|
|
|
|
{
|
2023-09-15 14:53:38 +00:00
|
|
|
imports = [
|
2023-09-26 17:44:54 +00:00
|
|
|
inputs.impermanence.nixosModules.home-manager.impermanence
|
|
|
|
../../cli
|
2024-05-24 18:03:22 +00:00
|
|
|
../../console
|
2024-05-23 19:02:20 +00:00
|
|
|
]
|
|
|
|
++ lib.optional (builtins.pathExists (./. + "/hosts/${hostname}.nix")) ./hosts/${hostname}.nix
|
|
|
|
++ lib.optional (builtins.pathExists (./. + "/hosts/${hostname}/default.nix")) ./hosts/${hostname}/default.nix
|
|
|
|
++ lib.optional (builtins.pathExists (./. + "/systems/${systemType}.nix")) ./systems/${systemType}.nix;
|
2023-09-15 14:53:38 +00:00
|
|
|
|
2023-09-25 18:05:07 +00:00
|
|
|
home = {
|
2023-09-26 17:44:54 +00:00
|
|
|
|
2024-06-06 11:30:48 +00:00
|
|
|
file.".config/alacritty/alacritty.yml".source = ./alacritty.yml;
|
|
|
|
|
2024-05-23 19:02:20 +00:00
|
|
|
file."ws/devshells".source = inputs.devshells;
|
2024-05-24 18:03:22 +00:00
|
|
|
|
2024-05-23 19:02:20 +00:00
|
|
|
file.".ssh/config".text = "
|
2023-09-25 18:05:07 +00:00
|
|
|
Host github.com
|
|
|
|
HostName github.com
|
|
|
|
User git
|
2024-05-23 19:02:20 +00:00
|
|
|
";
|
2024-05-24 18:03:22 +00:00
|
|
|
|
2024-05-23 19:02:20 +00:00
|
|
|
sessionVariables = {
|
|
|
|
# ...
|
|
|
|
};
|
2024-05-24 18:03:22 +00:00
|
|
|
|
2024-05-23 19:02:20 +00:00
|
|
|
file.".config/nixpkgs/config.nix".text = ''
|
2024-03-13 16:45:44 +00:00
|
|
|
{
|
2024-05-23 19:02:20 +00:00
|
|
|
allowUnfree = true;
|
2024-03-13 16:45:44 +00:00
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
2024-05-23 19:02:20 +00:00
|
|
|
packages = with pkgs; [ ];
|
2023-09-25 18:05:07 +00:00
|
|
|
};
|
2024-05-23 19:02:20 +00:00
|
|
|
|
2023-09-25 18:05:07 +00:00
|
|
|
programs = {
|
|
|
|
fish = {
|
2024-05-23 19:02:20 +00:00
|
|
|
enable = true;
|
|
|
|
interactiveShellInit = ''
|
|
|
|
set fish_cursor_default block blink
|
|
|
|
set fish_cursor_insert line blink
|
|
|
|
set fish_cursor_replace_one underscore blink
|
|
|
|
set fish_cursor_visual block
|
|
|
|
set -U fish_color_autosuggestion brblack
|
|
|
|
set -U fish_color_cancel -r
|
|
|
|
set -U fish_color_command green
|
|
|
|
set -U fish_color_comment brblack
|
|
|
|
set -U fish_color_cwd brgreen
|
|
|
|
set -U fish_color_cwd_root brred
|
|
|
|
set -U fish_color_end brmagenta
|
|
|
|
set -U fish_color_error red
|
|
|
|
set -U fish_color_escape brcyan
|
|
|
|
set -U fish_color_history_current --bold
|
|
|
|
set -U fish_color_host normal
|
|
|
|
set -U fish_color_match --background=brblue
|
|
|
|
set -U fish_color_normal normal
|
|
|
|
set -U fish_color_operator cyan
|
|
|
|
set -U fish_color_param blue
|
|
|
|
set -U fish_color_quote yellow
|
|
|
|
set -U fish_color_redirection magenta
|
|
|
|
set -U fish_color_search_match bryellow '--background=brblack'
|
|
|
|
set -U fish_color_selection white --bold '--background=brblack'
|
|
|
|
set -U fish_color_status red
|
|
|
|
set -U fish_color_user brwhite
|
|
|
|
set -U fish_color_valid_path --underline
|
|
|
|
set -U fish_pager_color_completion normal
|
|
|
|
set -U fish_pager_color_description yellow
|
|
|
|
set -U fish_pager_color_prefix white --bold --underline
|
|
|
|
set -U fish_pager_color_progress brwhite '--background=cyan'
|
|
|
|
'';
|
|
|
|
|
|
|
|
shellAliases =
|
|
|
|
let
|
|
|
|
# determines directory path of symbolic link
|
2024-05-23 19:57:04 +00:00
|
|
|
devsh = target: "nix develop $(readlink -f ~/ws/devshells)#${target} --command \$SHELL";
|
2024-05-23 19:02:20 +00:00
|
|
|
in
|
|
|
|
{
|
2024-05-23 19:57:04 +00:00
|
|
|
"devsh:c" = devsh "c";
|
|
|
|
"devh:python" = devsh "python";
|
2024-05-23 19:02:20 +00:00
|
|
|
};
|
2023-09-25 18:05:07 +00:00
|
|
|
};
|
|
|
|
|
2024-05-23 19:02:20 +00:00
|
|
|
git = {
|
|
|
|
userEmail = lib.mkDefault "greg@burd.me";
|
|
|
|
userName = lib.mkDefault "Greg Burd";
|
|
|
|
};
|
|
|
|
};
|
2023-09-26 19:45:31 +00:00
|
|
|
|
2024-05-23 19:57:04 +00:00
|
|
|
# To declaratively enable and configure, use of modules like home-manager you
|
|
|
|
# are required to configure dconf settings. (HINT: use `dconf watch /` to
|
|
|
|
# discover what to put here)
|
|
|
|
dconf = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
"org/gnome/shell" = {
|
|
|
|
disabled-user-extensions = false; # enables user extensions (disabled by default)
|
|
|
|
enabled-extensions = [
|
|
|
|
"blur-my-shell@aunetx"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
# Configure individual extensions
|
|
|
|
"org/gnome/shell/extensions/blur-my-shell" = {
|
|
|
|
brightness = 0.75;
|
|
|
|
noise-amount = 0;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-09-15 14:53:38 +00:00
|
|
|
}
|