moved around the hosts

This commit is contained in:
Chris Kruining 2024-07-21 14:26:30 +02:00
parent 9ba5f8fdf0
commit 23485c3c73
12 changed files with 166 additions and 8 deletions

View file

@ -0,0 +1,43 @@
{ config, lib, pkgs, ... }:
{
imports = [ ./hardware-configuration.nix ];
modules = {
themes.active = "everforrest";
networking.enable = true;
services = {
enable = true;
media.enable = true;
};
desktop = {
plasma.enable = true;
terminal = {
default = "alacritty";
allacrity.enable = true;
};
editors = {
default = "nano";
nano.enable = true;
};
};
shell = {
default = "zsh";
toolset = {
git.enable = true;
gnupg.enable = true;
};
};
};
programs.kdeconnect = {
enable = true;
package = pkgs.valent;
};
}