Reimplement home manager files
This commit is contained in:
parent
5f8cbf469b
commit
d333524003
11 changed files with 101 additions and 60 deletions
17
.config/nix/home/alacritty.nix
Normal file
17
.config/nix/home/alacritty.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings.font = {
|
||||
size = 14;
|
||||
normal.family = "Iosevka Comfy";
|
||||
normal.style = "Regular";
|
||||
};
|
||||
settings.window = {
|
||||
padding.x = 18;
|
||||
padding.y = 18;
|
||||
opacity = 0.85;
|
||||
decorations = "Buttonless";
|
||||
};
|
||||
};
|
||||
}
|
||||
9
.config/nix/home/amethyst.nix
Normal file
9
.config/nix/home/amethyst.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ ... }:
|
||||
{
|
||||
xdg.configFile."amethyst/amethyst.yml".text = ''
|
||||
window-margins: true
|
||||
window-margin-size: 10
|
||||
mouse-swaps-windows: true
|
||||
mouse-resizes-windows: true
|
||||
'';
|
||||
}
|
||||
19
.config/nix/home/core.nix
Normal file
19
.config/nix/home/core.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
raycast
|
||||
ripgrep
|
||||
tree
|
||||
curl
|
||||
less
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
PAGER = "less";
|
||||
CLICOLOR = 1;
|
||||
EDITOR = "emacs";
|
||||
};
|
||||
|
||||
programs.bat.enable = true;
|
||||
programs.git.enable = true;
|
||||
}
|
||||
21
.config/nix/home/default.nix
Normal file
21
.config/nix/home/default.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ ... }:
|
||||
let
|
||||
username = "tobi";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./alacritty.nix
|
||||
./amethyst.nix
|
||||
./core.nix
|
||||
./starship.nix
|
||||
./zsh.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
username = username;
|
||||
homeDirectory = "/Users/${username}";
|
||||
stateVersion = "23.05";
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
10
.config/nix/home/starship.nix
Normal file
10
.config/nix/home/starship.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
settings.gcloud.disabled = true;
|
||||
settings.aws.disabled = true;
|
||||
settings.hostname.style = "bold green";
|
||||
};
|
||||
}
|
||||
13
.config/nix/home/zsh.nix
Normal file
13
.config/nix/home/zsh.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
shellAliases = {
|
||||
ls = "ls --color=auto -F";
|
||||
nixswitch = "pushd ~/.config/nix; darwin-rebuild switch --flake .#";
|
||||
nixup = "pushd ~/.config/nix; nix flake update";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue