1

feat: add ags overlay

This commit is contained in:
Himadri Bhattacharjee
2024-06-07 09:02:55 +05:30
parent 48b3a24d5e
commit 7118be37ce
3 changed files with 17 additions and 3 deletions

View File

@@ -121,13 +121,12 @@
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
# Define a user account. Don't forget to set a password with passwd.
users.users.h = {
isNormalUser = true;
description = "Himadri Bhattacharjee";
extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
packages = with pkgs; [
ags
broot
fd
ffmpeg-full
@@ -279,6 +278,9 @@
# Modesetting is needed for most wayland compositors
modesetting.enable = true;
# I use proprietary CUDA garbage with direnv on a
# per-directory basis. So should you.
open = true;
# Disable the nvidia settings menu

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ inputs, config, pkgs, ... }:
{
@@ -17,6 +17,7 @@
./python.nix
./rust.nix
./shell.nix
./hud.nix
];
home = {

11
hosts/default/hud.nix Normal file
View File

@@ -0,0 +1,11 @@
{pkgs, ...}: {
systemd.user.services.ags-hud = {
Unit = {
Description = "ags cyberpunk hud for my cosmic epoch setup";
};
Install.WantedBy = [ "xdg-desktop-autostart.target" ];
Service = {
ExecStart = "${pkgs.ags}/bin/ags";
};
};
}