populated configuration
This commit is contained in:
4
system/hardware/audio.nix
Normal file
4
system/hardware/audio.nix
Normal file
@@ -0,0 +1,4 @@
|
||||
{ ... }:
|
||||
{
|
||||
hardware.pulseaudio.enable = true;
|
||||
}
|
||||
5
system/hardware/bluetooth.nix
Normal file
5
system/hardware/bluetooth.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ ... }:
|
||||
{
|
||||
hardware.bluetooth.enable = true;
|
||||
services.blueman.enable = true;
|
||||
}
|
||||
5
system/hardware/kernel.nix
Normal file
5
system/hardware/kernel.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
boot.kernelPackages = pkgs.linuxPackages_xanmod_stable;
|
||||
boot.consoleLogLevel = 3;
|
||||
}
|
||||
7
system/hardware/opengl.nix
Normal file
7
system/hardware/opengl.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
hardware.opengl.enable = true;
|
||||
hardware.opengl.extraPackages = with pkgs; [
|
||||
mesa
|
||||
];
|
||||
}
|
||||
4
system/hardware/time.nix
Normal file
4
system/hardware/time.nix
Normal file
@@ -0,0 +1,4 @@
|
||||
{ ... }:
|
||||
{
|
||||
services.timesyncd.enable = true;
|
||||
}
|
||||
4
system/services/cups.nix
Normal file
4
system/services/cups.nix
Normal file
@@ -0,0 +1,4 @@
|
||||
{...}:
|
||||
{
|
||||
services.printing.enable = true;
|
||||
}
|
||||
4
system/services/network-manager.nix
Normal file
4
system/services/network-manager.nix
Normal file
@@ -0,0 +1,4 @@
|
||||
{ ... }:
|
||||
{
|
||||
networking.networkmanager.enable = true;
|
||||
}
|
||||
9
system/services/ssh.nix
Normal file
9
system/services/ssh.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{...}:
|
||||
{
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PermitRootLogin = "yes";
|
||||
};
|
||||
};
|
||||
}
|
||||
13
system/utils.nix
Normal file
13
system/utils.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ lib, pkgs, ... }:
|
||||
{
|
||||
# minimal utilities for using linux
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
wget
|
||||
htop
|
||||
mc
|
||||
git
|
||||
parted
|
||||
tree
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user