67 lines
1.1 KiB
Nix
67 lines
1.1 KiB
Nix
{ inputs, config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
../common/common.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
home-manager = {
|
|
extraSpecialArgs = { inherit inputs; };
|
|
users = {
|
|
smayzy = import ./home.nix;
|
|
};
|
|
backupFileExtension = "backup";
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
|
|
networking.hostName = "laptop1";
|
|
|
|
services.desktopManager.plasma6.enable = true;
|
|
services.displayManager.sddm.enable = true;
|
|
services.displayManager.sddm.wayland.enable = true;
|
|
|
|
programs.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
|
|
xdg.portal.enable = true;
|
|
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
mako
|
|
wofi
|
|
wlogout
|
|
waybar
|
|
wl-clipboard
|
|
libnotify
|
|
hyprpaper
|
|
webcord
|
|
pavucontrol
|
|
cliphist
|
|
obsidian
|
|
samrewritten
|
|
libsForQt5.kdenlive
|
|
floorp
|
|
komikku
|
|
librewolf
|
|
inkscape
|
|
hyprlock
|
|
];
|
|
|
|
services.flatpak = {
|
|
enable = true;
|
|
update.onActivation = true;
|
|
packages = [
|
|
"com.github.tchx84.Flatseal"
|
|
"com.usebottles.bottles"
|
|
"it.mijorus.gearlever"
|
|
"com.google.AndroidStudio"
|
|
];
|
|
};
|
|
|
|
}
|