Skip to content

Commit

Permalink
Merge pull request #38 from redyf/dev
Browse files Browse the repository at this point in the history
feat: Add testing system
  • Loading branch information
redyf authored Feb 8, 2024
2 parents c1f2d44 + b72666c commit 57f7d50
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions systems/x86_64-linux/testing/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{ lib
, config
, pkgs
, inputs
, ...
}: with lib;
with lib.custom;
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];

suites = {
common = enabled;
desktop = enabled;
development = enabled;
music = enabled;
video = disabled;
social = disabled;
gaming = disabled;
rice = enabled;
};

programs.hyprland = {
enable = true;
};

# Change systemd stop job timeout in NixOS configuration (Default = 90s)
systemd = {
services.NetworkManager-wait-online.enable = false;
extraConfig = ''
DefaultTimeoutStopSec=10s
'';
};

# Configure keymap in X11
services = {
# Enable CUPS to print documents.
# printing.enable = true;
xserver = {
# Enable the X11 windowing system.
enable = true;
libinput = {
enable = true;
mouse = {
accelProfile = "flat";
};
touchpad = {
accelProfile = "flat";
};
};
};
logmein-hamachi.enable = false;
flatpak.enable = false;
};

environment.systemPackages = with pkgs; [
git
playerctl
deploy-rs
];

system.stateVersion = "22.11"; # Did you read the comment?
}

0 comments on commit 57f7d50

Please sign in to comment.