mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 23:11:34 +01:00
20 lines
338 B
Nix
20 lines
338 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [ ../home.nix ];
|
|
|
|
home.stateVersion = "23.11";
|
|
|
|
myConfig = {
|
|
theme = "dark";
|
|
hibernation.enable = true;
|
|
};
|
|
|
|
home.packages = [
|
|
pkgs.ffmpeg
|
|
pkgs.obs-studio
|
|
pkgs.davinci-resolve
|
|
pkgs.gimp
|
|
];
|
|
|
|
wayland.windowManager.hyprland.settings.monitor = [ "DP-1,2560x1440@144,0x0,1" ];
|
|
}
|