derp
This commit is contained in:
parent
f05869f2bb
commit
719eda9db9
|
@ -130,6 +130,7 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||||
# wget
|
# wget
|
||||||
|
alejandra
|
||||||
restic
|
restic
|
||||||
htop
|
htop
|
||||||
cloudflared
|
cloudflared
|
||||||
|
|
|
@ -9,12 +9,56 @@
|
||||||
# paths it should manage.
|
# paths it should manage.
|
||||||
home.username = "sondell";
|
home.username = "sondell";
|
||||||
home.homeDirectory = "/home/sondell";
|
home.homeDirectory = "/home/sondell";
|
||||||
programs.ssh.addKeysToAgent = "yes";
|
programs = {
|
||||||
programs.ssh.enable = true;
|
ssh.addKeysToAgent = "yes";
|
||||||
programs.ssh.matchBlocks."*".identityFile = [
|
ssh.enable = true;
|
||||||
|
ssh.matchBlocks."*".identityFile = [
|
||||||
"/home/sondell/.ssh/tulpan"
|
"/home/sondell/.ssh/tulpan"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Let Home Manager install and manage itself.
|
||||||
|
home-manager.enable = true;
|
||||||
|
|
||||||
|
helix = {
|
||||||
|
enable = true;
|
||||||
|
defaultEditor = true;
|
||||||
|
languages = {
|
||||||
|
language = [
|
||||||
|
{
|
||||||
|
name = "nix";
|
||||||
|
auto-format = true;
|
||||||
|
formatter = {command = "alejandra";};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "python";
|
||||||
|
auto-format = true;
|
||||||
|
formatter = {
|
||||||
|
command = "black";
|
||||||
|
args = ["-q" "--fast" "-"];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
settings = {
|
||||||
|
# theme = "nightfox";
|
||||||
|
keys.normal = {
|
||||||
|
C-up = "expand_selection";
|
||||||
|
C-down = "shrink_selection";
|
||||||
|
C-left = "select_prev_sibling";
|
||||||
|
C-right = "select_next_sibling";
|
||||||
|
};
|
||||||
|
editor = {
|
||||||
|
cursor-shape = {
|
||||||
|
insert = "bar";
|
||||||
|
};
|
||||||
|
line-number = "relative";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
# This value determines the Home Manager release that your
|
# This value determines the Home Manager release that your
|
||||||
# configuration is compatible with. This helps avoid breakage
|
# configuration is compatible with. This helps avoid breakage
|
||||||
# when a new Home Manager release introduces backwards
|
# when a new Home Manager release introduces backwards
|
||||||
|
@ -24,7 +68,4 @@
|
||||||
# the Home Manager release notes for a list of state version
|
# the Home Manager release notes for a list of state version
|
||||||
# changes in each release.
|
# changes in each release.
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.05";
|
||||||
|
|
||||||
# Let Home Manager install and manage itself.
|
|
||||||
programs.home-manager.enable = true;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue