Improve code style

This commit is contained in:
blit 2024-02-17 17:41:45 +07:00
parent 1f4bdd15bc
commit 8f60b8e990
Signed by: blit
GPG Key ID: DC347CCD059FDA41
6 changed files with 60 additions and 67 deletions

View File

@ -4,58 +4,60 @@
./modules/git.nix
];
home.username = "blit";
home.homeDirectory = "/home/blit";
home = {
username = "blit";
homeDirectory = "/home/blit";
home.stateVersion = "23.11"; # Please read the comment before changing.
stateVersion = "23.11"; # Please read the comment before changing.
home.packages = [
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# # fonts?
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
packages = [
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# # fonts?
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
];
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
file = {
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
};
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
};
# Home Manager can also manage your environment variables through
# 'home.sessionVariables'. If you don't want to manage your shell through Home
# Manager then you have to manually source 'hm-session-vars.sh' located at
# either
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/blit/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = {
# EDITOR = "emacs";
# Home Manager can also manage your environment variables through
# 'home.sessionVariables'. If you don't want to manage your shell through Home
# Manager then you have to manually source 'hm-session-vars.sh' located at
# either
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/blit/etc/profile.d/hm-session-vars.sh
#
sessionVariables = {
# EDITOR = "emacs";
};
};
# Let Home Manager install and manage itself.

View File

@ -1,6 +1,3 @@
{
home-manager = {
users.blit = import ./blit/home.nix;
useGlobalPkgs = true;
};
home-manager.users.blit = import ./blit/home.nix;
}

View File

@ -1,9 +1,7 @@
{
programs.gnupg = {
agent = {
enable = true;
enableSSHSupport = false;
pinentryFlavor = "curses";
};
programs.gnupg.agent = {
enable = true;
enableSSHSupport = false;
pinentryFlavor = "curses";
};
}

View File

@ -1,5 +1,3 @@
{
programs.ssh = {
startAgent = true;
};
programs.ssh.startAgent = true;
}

View File

@ -1,12 +1,10 @@
{ pkgs, ... }:
{
programs = {
fish = {
enable = true;
promptInit = ''
${pkgs.any-nix-shell}/bin/any-nix-shell fish --info-right | source
'';
};
programs.fish = {
enable = true;
promptInit = ''
${pkgs.any-nix-shell}/bin/any-nix-shell fish --info-right | source
'';
};
}

View File

@ -2,6 +2,6 @@
{
environment.systemPackages = with pkgs; [ starship ];
programs.starship.enable = true;
}