Skip to content

Commit 6d15c85

Browse files
Fix references to profiles
1 parent da6fec4 commit 6d15c85

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

users/ethan.turkeltaub/home.nix

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
{ config, pkgs, suites, profiles, secrets, ... }: {
2-
imports = with suites;
3-
base ++ development ++ identity
4-
++ [ profiles.awscli.default profiles.mise.default ]
1+
{ config, suites, profiles, secrets, ... }: {
2+
imports = (with suites; base ++ development ++ identity)
3+
++ (with profiles; [ awscli.default mise.default ])
54
++ [ secrets.users."ethan.turkeltaub".home ] ++ [ ./profiles/vscode.nix ];
65

76
tilde.home = {

users/ethan/home.nix

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{ config, suites, profiles, pkgs, ... }: {
2-
imports = with suites;
3-
base ++ development ++ identity ++ [
4-
elixir.default
5-
mise.default
6-
nodejs.default
7-
profiles.tools.media-management
8-
profiles.zed.default
9-
ruby.default
10-
] ++ [ ./profiles/tmuxp.nix ./profiles/vscode.nix ];
2+
imports = (with suites; base ++ development ++ identity) ++ (with profiles; [
3+
elixir.default
4+
mise.default
5+
nodejs.default
6+
tools.media-management
7+
zed.default
8+
ruby.default
9+
]) ++ [ ./profiles/tmuxp.nix ./profiles/vscode.nix ];
1110

1211
home.packages = with pkgs; [ borgbackup nixd ];
1312

0 commit comments

Comments
 (0)