mirror of
https://github.com/blahai/nyx.git
synced 2025-06-25 01:17:00 -04:00
Format with alejandra
This commit is contained in:
parent
4771948682
commit
e08f66d286
31 changed files with 398 additions and 278 deletions
|
@ -1,4 +1,9 @@
|
|||
{ inputs, config, pkgs, ... }: {
|
||||
{
|
||||
inputs,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../../modules/home-manager/default.nix
|
||||
inputs.catppuccin.homeManagerModules.catppuccin
|
||||
|
@ -23,10 +28,10 @@
|
|||
autocrlf = "input";
|
||||
};
|
||||
url = {
|
||||
"ssh://git@github.com/" = { insteadOf = "https://github.com/"; };
|
||||
"ssh://git@github.com/" = {insteadOf = "https://github.com/";};
|
||||
};
|
||||
gpg = { format = "ssh"; };
|
||||
init = { defaultBranch = "main"; };
|
||||
gpg = {format = "ssh";};
|
||||
init = {defaultBranch = "main";};
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -45,12 +50,15 @@
|
|||
|
||||
gtk = {
|
||||
enable = true;
|
||||
catppuccin = {
|
||||
};
|
||||
|
||||
catppuccin = {
|
||||
gtk = {
|
||||
enable = true;
|
||||
flavor = "mocha";
|
||||
accent = "pink";
|
||||
size = "standard";
|
||||
tweaks = [ "normal" ];
|
||||
tweaks = ["normal"];
|
||||
icon.enable = true;
|
||||
};
|
||||
};
|
||||
|
@ -64,9 +72,12 @@
|
|||
|
||||
home.stateVersion = "24.11";
|
||||
|
||||
home.packages = with pkgs; [ obsidian ];
|
||||
home.packages = with pkgs; [
|
||||
obsidian
|
||||
inputs.haivim.packages.${pkgs.system}.default
|
||||
];
|
||||
|
||||
home.sessionVariables = { EDITOR = "nvim"; };
|
||||
home.sessionVariables = {EDITOR = "nvim";};
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue