2025-08-31 01:47:57 -04:00
|
|
|
{ config, pkgs, inputs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[
|
|
|
|
|
./hardware-configuration.nix
|
2025-09-13 15:10:42 -04:00
|
|
|
../../modules/kanata.nix
|
2025-08-31 01:47:57 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
systemd.tpm2.enable = false;
|
|
|
|
|
networking.hostName = "syntheticnexus";
|
2025-09-13 15:10:42 -04:00
|
|
|
|
2025-09-08 18:19:18 -04:00
|
|
|
services.displayManager.gdm.enable = true;
|
2025-08-31 01:47:57 -04:00
|
|
|
services.desktopManager.gnome.enable = true;
|
|
|
|
|
services.gnome.core-apps.enable = false;
|
|
|
|
|
services.gnome.core-developer-tools.enable = false;
|
|
|
|
|
services.gnome.games.enable = false;
|
|
|
|
|
environment.gnome.excludePackages = with pkgs; [ gnome-tour gnome-user-docs ];
|
2025-09-13 15:10:42 -04:00
|
|
|
|
2025-08-31 01:47:57 -04:00
|
|
|
services.libinput.enable = true; # for laptop touchpad
|
|
|
|
|
|
|
|
|
|
users.users.lunita = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
description = "Lunita";
|
|
|
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
|
|
|
packages = with pkgs; [];
|
2025-08-31 02:18:14 -04:00
|
|
|
shell = pkgs.zsh;
|
2025-08-31 01:47:57 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
curl
|
|
|
|
|
wget
|
|
|
|
|
neovim
|
|
|
|
|
git
|
2025-08-31 02:18:14 -04:00
|
|
|
home-manager
|
2025-08-31 01:47:57 -04:00
|
|
|
gnome-console
|
|
|
|
|
gnomeExtensions.blur-my-shell
|
|
|
|
|
gnomeExtensions.just-perfection
|
|
|
|
|
gnomeExtensions.paperwm
|
|
|
|
|
nyxt
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
system.stateVersion = "25.05";
|
|
|
|
|
}
|