Initial commit

This commit is contained in:
alsaiduq-lab 2025-03-13 14:50:27 -06:00
commit e886de58af
23 changed files with 926 additions and 0 deletions

39
modules/default.nix Normal file
View file

@ -0,0 +1,39 @@
{ config, pkgs, lib, ... }:
{
imports = [
./audio.nix
./bluetooth.nix
./boot.nix
./docker.nix
./env.nix
./fish.nix
./fonts.nix
./home-manager.nix
./i3-xfce.nix
./net.nix
./nixos.nix
./nvidia.nix
./steam.nix
./timezone.nix
./user.nix
];
# Enable CUPS to print documents.
services.printing.enable = true;
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
environment.systemPackages = with pkgs; [
wget
curl
git
home-manager
];
}