wip
This commit is contained in:
@@ -1,15 +1,21 @@
|
||||
{ inputs, pkgs, ... }:
|
||||
let hyprland-session = pkgs.makeDesktopItem {
|
||||
name = "Hyprland";
|
||||
comment = "Hyprland (custom desktop file)";
|
||||
desktopNames = "Hyprland";
|
||||
exec = "Hyprland";
|
||||
type = "Application";
|
||||
};
|
||||
let
|
||||
hyprland-session = pkgs.makeDesktopItem {
|
||||
name = "Hyprland";
|
||||
comment = "Hyprland (custom desktop file)";
|
||||
desktopNames = "Hyprland";
|
||||
exec = "Hyprland";
|
||||
type = "Application";
|
||||
};
|
||||
in
|
||||
{
|
||||
|
||||
services.xserver.enable = true;
|
||||
services.xserver.displayManager.startx.enable = true;
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.startx.enable = true;
|
||||
autoRepeatDelay = 250;
|
||||
autoRepeatInterval = 30;
|
||||
};
|
||||
# services.xserver.displayManager.sessionPackages = [ hyprland-session ];
|
||||
|
||||
# services.xserver.windowManager.gnome.enable = true;
|
||||
|
||||
@@ -12,6 +12,13 @@
|
||||
gnumake
|
||||
];
|
||||
|
||||
programs.nix-ld = {
|
||||
enable = true;
|
||||
libraries = with pkgs; [
|
||||
stdenv.cc.cc.lib
|
||||
];
|
||||
};
|
||||
|
||||
time = {
|
||||
timeZone = "Europe/Lisbon";
|
||||
};
|
||||
|
||||
@@ -34,6 +34,10 @@
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
||||
environment.variables = {
|
||||
GDK_SCALE = 2;
|
||||
};
|
||||
|
||||
users.users.naps62 = {
|
||||
isNormalUser = true;
|
||||
description = "Miguel Palhas";
|
||||
|
||||
Reference in New Issue
Block a user