renamed hosts and working on multi user conf

This commit is contained in:
Chris Kruining 2025-03-18 14:37:23 +01:00
parent a603eb08a4
commit f7891e1f30
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
21 changed files with 208 additions and 75 deletions

View file

@ -1,40 +0,0 @@
{ config, lib, pkgs, ... }:
{
imports = [ ./hardware.nix ];
modules = {
themes = {
enable = true;
theme = "everforest";
polarity = "dark";
};
system.audio.enable = true;
networking.enable = true;
desktop = {
plasma.enable = true;
terminal = {
default = "alacritty";
alacritty.enable = true;
};
editors = {
default = "nano";
nano.enable = true;
};
browsers = {
default = "firefox";
firefox.enable = true;
firefox.privacy.enable = true;
};
};
shell = {
default = "zsh";
corePkgs.enable = true;
};
};
}