mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
Use existing modules for stel-xps
This commit is contained in:
parent
49f7f4b5fb
commit
a27415749e
@ -1,17 +1,27 @@
|
||||
{ config, pkgs, ...}:
|
||||
{
|
||||
imports = [
|
||||
../../common/users.nix
|
||||
./printer.nix
|
||||
./hardware-configuration.nix
|
||||
./software.nix
|
||||
];
|
||||
|
||||
elss = {
|
||||
# base system
|
||||
base.enable = true;
|
||||
# setup locale and font settings
|
||||
locale.enable = true;
|
||||
# configure zsh
|
||||
zsh.enable = true;
|
||||
|
||||
# user setup
|
||||
users = {
|
||||
enable = true;
|
||||
admins = [ "ellmau" ];
|
||||
users = [ ];
|
||||
};
|
||||
};
|
||||
imports = [
|
||||
../../common/users.nix
|
||||
./printer.nix
|
||||
];
|
||||
|
||||
variables = {
|
||||
hostName = "stel-xps";
|
||||
|
||||
14
machines/stel-xps/software.nix
Normal file
14
machines/stel-xps/software.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ config, pkgs, ...}:
|
||||
{
|
||||
environment.systempackages = with pkgs; [
|
||||
brightnessctl
|
||||
];
|
||||
|
||||
programs = {
|
||||
java.enable = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
autorandr.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user