restructure folders - 2

This commit is contained in:
2024-03-03 13:15:52 +01:00
parent 0ff29aca1a
commit 0fde604f96
8 changed files with 41 additions and 59 deletions

View File

@@ -18,7 +18,7 @@
lm_sensors
# extras
openssh
# openssh
#betterbird
#bitwarden
# dropbox

View File

@@ -9,7 +9,7 @@
env = { "TERM" = "xterm-256color"; };
font = {
size = 10;
size = 9;
normal.family = "Fira Code";
bold.family = "Fira Code";
italic.family = "Fira Code";

View File

@@ -1,16 +1,9 @@
{ pkgs, config, ... }:
{
home.packages = with pkgs; [
#zsh
fzf
python3
zsh-nix-shell
nix-zsh-completions
];
home.packages = with pkgs; [ fzf python3 zsh-nix-shell nix-zsh-completions ];
programs.zsh = {
enable = true;
dotDir = ".config/zsh";
shellAliases = { update = "sudo nixos-rebuild switch"; };
enableAutosuggestions = true;

View File

@@ -1,5 +1 @@
{
imports = [
./ssh-agent.nix
];
}
{ imports = [ ./openssh.nix ./ssh-agent.nix ]; }

View File

@@ -2,9 +2,7 @@
{
services = {
ssh-agent = {
enable = true;
};
ssh-agent = { enable = true; };
openssh = {
enable = true;
settings = {

View File

@@ -1,8 +1,6 @@
{ ... }:
{
services.ssh-agent = {
enable = true;
};
services.ssh-agent = { enable = true; };
}