Establish baseline

This commit is contained in:
Nina Chlóe Kassandra Reiß
2026-04-20 04:21:11 +02:00
commit 8df205457a
26 changed files with 678 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
{ pkgs, ... }:
let
profile = import ../profile.nix;
in
{
imports = [
./browser.nix
#./planner.nix
./window-manager.nix
../applications/matrix.nix
];
home.packages = with pkgs; [
kitty
pamixer
nemo-with-extensions
];
#services.dbus.enable = true;
#programs.dconf.enable = true;
services.greetd = {
enable = true;
settings = {
default_session = {
command = "Hyprland";
user = profile.username;
};
};
};
xdg.portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
};
systemd.targets.sleep.enable = false;
systemd.targets.suspend.enable = false;
systemd.targets.hibernate.enable = false;
systemd.targets.hybrid-sleep.enable = false;
}