feat: add ags overlay
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
11
hosts/default/hud.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user