Initial commit
This commit is contained in:
commit
e886de58af
23 changed files with 926 additions and 0 deletions
39
modules/default.nix
Normal file
39
modules/default.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue