1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00
nixos/machine/stel-xps/default.nix
Stefan Ellmauthaler 1327b9524d
FLAKE upd
• Updated input 'emacs-overlay':
  → 'github:nix-community/emacs-overlay/d223b464c6edffe88015c390cc137ee2eab64090' (2022-01-11)
• Updated input 'nixos-hardware':
  → 'github:NixOS/nixos-hardware/c9ede9e7312d63e6f2c92bdb27138369f989cdfd' (2022-01-10)
• Updated input 'nixpkgs':
  → 'github:NixOS/nixpkgs/79c7b6a353e22f0eec342dead0bc69fb7ce846db' (2022-01-10)
• Updated input 'nixpkgs-unstable':
  → 'github:NixOS/nixpkgs/0ecf7d414811f831060cf55707c374d54fbb1dec' (2022-01-09)
2022-01-11 11:17:10 +01:00

26 lines
486 B
Nix

{ config, pkgs, ...}:
{
imports = [ ./printer.nix ];
variables = {
hostName = "stel-xps";
graphical = true;
};
#networking.hostName = "stel-xps"; # define the hostname
environment.systemPackages = with pkgs; [
brightnessctl
];
boot.extraModulePackages = [
config.boot.kernelPackages.v4l2loopback
];
boot.kernelModules = [
"v4l2loopback"
];
services.autorandr.enable = true;
services.xserver.desktopManager.wallpaper.mode = "fill";
}