This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/host/desktop/device.nix
2026-04-18 02:37:26 +07:00

72 lines
1.8 KiB
Nix

{
libs,
pkgs,
...
}: {
device = {
flake-name = "ideapad-slim-5";
cursors = "aemeath";
dm.sddm.enable = true;
dm.gdm.enable = false;
de.kdePlasma.enable = false;
de.gnome.enable = false;
wm.niri.enable = false;
wm.hyprland.enable = true;
wm.hyprland.monitors = [
"eDP-1, 1920x1200@60, 0x0, 1, bitdepth, 10, cm, hdr, icc, ${libs.root "/assets/srgb_to_gamma2p2_400_mhc2.icm"}"
];
# wm.hyprland.monitorsv2 = [
# {
# output = "eDP-1";
# mode = "1920x1200@60";
# position = "0x0";
# scale = 1;
# bitdepth = 10;
# cm = "hdr";
# icc = builtins.toString (libs.root "/assets/srgb_to_gamma2p2_400_mhc2.icm");
# }
# ];
bluetooth.enable = true;
flatpak.enable = true;
files = {
force = {};
mkForce = {
".mozilla/firefox/default/search.json.mozlz4" = true;
};
source = {
".config/qt5ct/colors/Catppuccin-Mocha.conf" = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf";
".config/qt6ct/colors/Catppuccin-Mocha.conf" = "${pkgs.catppuccin-qt5ct}/share/qt6ct/colors/catppuccin-mocha-sapphire.conf";
};
symlink = {
"SteamApps" = ".local/share/Steam/steamapps";
"Development/Quickshell" = ".config/quickshell";
# "Development/KDE-Widget" = ".local/share/plasma/plasmoids";
# "Development/SplashScreen" = ".local/share/plasma/look-and-feel";
# "Development/DesktopEffects" = ".local/share/kwin/effects";
};
};
programs = {
terminal = {
enable = true;
name = "ghostty";
};
obs-studio.enable = true;
nixcord.enable = true;
tmux.enable = true;
starship.enable = true;
fastfetch.enable = true;
cider-2.enable = true;
steam.enable = true;
};
};
}