NixOS-Config/hosts/shuttleworth/home/default.nix

29 lines
625 B
Nix
Raw Normal View History

2024-10-16 00:45:09 -04:00
{ config, pkgs, nur, ... }:
2024-10-15 02:40:43 -04:00
{
imports = [
2024-10-16 00:04:56 -04:00
# Apps and programs
2024-10-15 02:40:43 -04:00
../../../modules/home
../../../modules/home/users
../../../modules/home/files
../../../modules/home/settings
../../../modules/home/programs
2024-10-16 00:04:56 -04:00
../../../modules/home/programs/misc/remote-desktop
2024-10-15 02:40:43 -04:00
../../../modules/home/sway
../../../modules/home/utils
2024-10-16 00:04:56 -04:00
# Misc
../../../overlays
../../../variables
../../../variables/look/colors/purple
# Imports
nur.nixosModules.nur
2024-10-15 02:40:43 -04:00
];
home.packages = with pkgs; [
alsa-utils
];
wayland.windowManager.sway.config.output.${config.displays.dI}.scale = "1.3";
2024-10-15 02:40:43 -04:00
}