adding ags
This commit is contained in:
parent
58a920fa73
commit
984191eebb
4 changed files with 61 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ config, lib, pkgs, ags, ... }:
|
||||
|
||||
let
|
||||
laptop = builtins.readFile "/etc/hostname" == "syl\n";
|
||||
|
@ -6,6 +6,7 @@ in
|
|||
{
|
||||
imports = [
|
||||
./modules/hyprland.nix
|
||||
ags.homeManagerModules.default
|
||||
];
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
|
@ -183,6 +184,9 @@ in
|
|||
source = ../.config/mpv;
|
||||
};
|
||||
|
||||
home.file.".config/ags" = {
|
||||
source = ../.config/ags;
|
||||
};
|
||||
# services.kdeconnect.enable = true;
|
||||
|
||||
services = {
|
||||
|
@ -654,6 +658,15 @@ tooltip label {
|
|||
source = ../.config/fish/functions;
|
||||
};
|
||||
|
||||
programs.ags = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
gtksourceview
|
||||
webkitgtk
|
||||
accountsservice
|
||||
];
|
||||
};
|
||||
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
interactiveShellInit = ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue