Update kde-stuff with changes from main #5

Merged
Toast merged 27 commits from main into kde-stuff 2023-07-12 21:27:49 +02:00
2 changed files with 18 additions and 1 deletions
Showing only changes of commit ad8081bba3 - Show all commits

View file

@ -4,6 +4,7 @@
imports = [
./htop.nix
./nix.nix
./micro.nix
./nix-index.nix
./command-not-found.nix
];
@ -11,7 +12,6 @@
environment.systemPackages = with pkgs; [
speedtest-cli
bat
micro
nvd
ncdu
tree

View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
home-manager = {
users.toast = { config, pkgs, ... }:
{
programs.micro = {
enable = true;
settings = {
clipboard = "terminal";
indentchar = "|";
softwrap = true;
};
};
};
};
}