Establish baseline
This commit is contained in:
42
desktop-environment/config.nix
Normal file
42
desktop-environment/config.nix
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user