Skip to content

Commit

Permalink
chore: nix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
erictossell committed May 2, 2024
1 parent d3f5c37 commit a793d0b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 26 deletions.
13 changes: 5 additions & 8 deletions modules/apps/1password/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
username,
...
}:
{ username, ... }:
{
home-manager.users.${username} = {
home.file = {
Expand All @@ -10,10 +7,10 @@
# Host *
# IdentityAgent ~/.1password/agent.sock

# Host git.eriim.dev
# HostName eriim.dev
# Port 23231
# '';
# Host git.eriim.dev
# HostName eriim.dev
# Port 23231
# '';

# Configure 1password to handle SSH commit signing
".gitconfig".text = ''
Expand Down
6 changes: 1 addition & 5 deletions modules/core/nix/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
pkgs,
username,
...
}:
{ pkgs, username, ... }:
{
imports = [ ./nh ];

Expand Down
3 changes: 1 addition & 2 deletions modules/core/nix/nh/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{ username, ... }:
{
programs.nh = {
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 4d --keep 3";
flake = "/home/${username}/repos/nix/nixflakes";

};
}
5 changes: 1 addition & 4 deletions modules/core/terminal/cava/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
pkgs,
...
}:
{ pkgs, ... }:
{
imports = [ ./dots ];
environment.systemPackages = with pkgs; [ cava ];
Expand Down
6 changes: 1 addition & 5 deletions modules/core/terminal/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
pkgs,
username,
...
}:
{ pkgs, username, ... }:
{
imports = [
./cava
Expand Down
4 changes: 2 additions & 2 deletions modules/core/terminal/fish/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
${pkgs.zoxide}/bin/zoxide init fish | source
'';
shellAliases = {

b = "btop";
c = "clear";
e = "exit";
n = "nvim";
t = "tmux";
r = "ranger";

g = "git";
ga = "git add";
gaa = "git add --all";
Expand Down

0 comments on commit a793d0b

Please sign in to comment.