dennis the formatter (#75)

* dennis the formatter

* changed comment

* fixup
This commit is contained in:
Dennis
2024-02-05 22:45:43 +01:00
committed by GitHub
parent 47a65a151c
commit 4c1e86907a
15 changed files with 247 additions and 235 deletions

View File

@ -1,10 +1,7 @@
{ pkgs, ... }:
{
home.username = "alice";
home.homeDirectory = "/home/alice";
home.packages = with pkgs; [
home = {
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello
@ -22,37 +19,40 @@
# echo "Hello, ${config.home.username}!"
# '')
ncdu
username = "alice";
homeDirectory = "/home/alice";
packages = with pkgs; [
ncdu
# Rust packages
trunk
wasm-pack
cargo-watch
#pkgs.cargo-tarpaulin
cargo-generate
cargo-audit
cargo-update
diesel-cli
gitoxide
tealdeer
helix
# Rust packages
trunk
wasm-pack
cargo-watch
#pkgs.cargo-tarpaulin
cargo-generate
cargo-audit
cargo-update
diesel-cli
gitoxide
tealdeer
helix
# nix specific packages
nil
nixfmt
# nix specific packages
nil
nixfmt
# markdown
nodePackages.markdownlint-cli
# markdown
nodePackages.markdownlint-cli
# doom emacs dependencies
fd
ripgrep
clang
];
# doom emacs dependencies
fd
ripgrep
clang
];
};
programs = {
zsh.enable = true;
starship.enable = true;
fzf = {
enable = true;

View File

@ -3,6 +3,9 @@
{
inherit name;
isNormalUser = true;
shell = lib.mkIf config.programs.${defaultShell}.enable pkgs.${defaultShell};
hashedPasswordFile = config.sops.secrets."${name}/user-password".path or null;
openssh.authorizedKeys.keys = publicKeys;
extraGroups = [
"wheel"
"media"
@ -15,7 +18,4 @@
"plugdev"
"uaccess"
];
shell = lib.mkIf config.programs.${defaultShell}.enable pkgs.${defaultShell};
hashedPasswordFile = config.sops.secrets."${name}/user-password".path or null;
openssh.authorizedKeys.keys = publicKeys;
}

View File

@ -1,39 +1,39 @@
{ pkgs, ... }:
{
home.username = "richie";
home.homeDirectory = "/home/richie";
home.packages = with pkgs; [
# Rust packages
topgrade
trunk
wasm-pack
cargo-watch
# pkgs.cargo-tarpaulin
cargo-generate
cargo-audit
cargo-update
diesel-cli
# gitoxide currently broke 09182023
gitoxide
tealdeer
helix
# nix specific packages
nil
nixfmt
# markdown
nodePackages.markdownlint-cli
# doom emacs dependencies
fd
ripgrep
clang
];
programs.zsh.enable = true;
home = {
username = "richie";
homeDirectory = "/home/richie";
packages = with pkgs; [
# Rust packages
topgrade
trunk
wasm-pack
cargo-watch
# pkgs.cargo-tarpaulin
cargo-generate
cargo-audit
cargo-update
diesel-cli
# gitoxide currently broke 09182023
gitoxide
tealdeer
helix
# nix specific packages
nil
nixfmt
# markdown
nodePackages.markdownlint-cli
# doom emacs dependencies
fd
ripgrep
clang
];
};
home.stateVersion = "23.11";
}