Initial living-room config
This commit is contained in:
parent
9bfca72823
commit
fa29ae8568
4 changed files with 89 additions and 1 deletions
40
systems/living-room/configuration.nix
Normal file
40
systems/living-room/configuration.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ config, pkgs, ... }: {
|
||||
imports = [
|
||||
# Core Features
|
||||
../../nixos/features/base.nix
|
||||
../../nixos/features/tui-apps.nix
|
||||
../../nixos/features/openssh-server.nix
|
||||
|
||||
# Core Tweaks
|
||||
../../nixos/tweaks/zram.nix
|
||||
../../nixos/tweaks/enable_flakes.nix
|
||||
../../nixos/tweaks/disable_nixos_user.nix
|
||||
../../nixos/tweaks/systemd-resolved_nonsense.nix
|
||||
|
||||
# Lauren Base
|
||||
../../users/lauren_lagarde/lauren_lagarde.nix
|
||||
|
||||
# i3wm
|
||||
../../nixos/features/i3wm.nix
|
||||
../../nixos/tweaks/intel_igpu_screen_tearing.nix
|
||||
|
||||
# Dotspace
|
||||
../../secrets/dotspace.nix
|
||||
../../secrets/dotspace_shares.nix
|
||||
../../nixos/features/stronghold-binary-cache.nix
|
||||
|
||||
# ll-latitude-e5591
|
||||
../../nixos/features/gpu/intel.nix
|
||||
../../nixos/features/systemd-boot.nix
|
||||
|
||||
# Disko Config
|
||||
../../nixos/disko/libvirt/uefi-base.nix
|
||||
../../nixos/disko/libvirt/lvm.nix
|
||||
../../nixos/disko/libvirt/lvm-ext4.nix
|
||||
];
|
||||
|
||||
image.modules = {
|
||||
iso = {
|
||||
};
|
||||
};
|
||||
}
|
10
systems/living-room/home.nix
Normal file
10
systems/living-room/home.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
];
|
||||
|
||||
xsession.windowManager.i3 = {
|
||||
config.startup = [
|
||||
{ command = "xrandr --output HDMI-1 --mode 1920x1080 --rate 60 --primary"; }
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue