remove ags
This commit is contained in:
parent
3626b8f902
commit
62e97a00ff
43
flake.lock
43
flake.lock
|
@ -1,47 +1,5 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"ags": {
|
|
||||||
"inputs": {
|
|
||||||
"astal": "astal",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1732307740,
|
|
||||||
"narHash": "sha256-ZDsYdZOtg5qkK/wfLLB83B3SI+fE32S+/6Ey0ggHODM=",
|
|
||||||
"owner": "Aylur",
|
|
||||||
"repo": "ags",
|
|
||||||
"rev": "81159966eb8b39b66c3efc133982fd76920c9605",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "Aylur",
|
|
||||||
"repo": "ags",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"astal": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"ags",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1731952585,
|
|
||||||
"narHash": "sha256-Sh1E7sJd8JJM3PCU1ZOei/QWz97OLCENIi2rTRoaniw=",
|
|
||||||
"owner": "aylur",
|
|
||||||
"repo": "astal",
|
|
||||||
"rev": "664c7a4ddfcf48c6e8accd3c33bb94424b0e8609",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "aylur",
|
|
||||||
"repo": "astal",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"base16": {
|
"base16": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"fromYaml": "fromYaml"
|
"fromYaml": "fromYaml"
|
||||||
|
@ -611,7 +569,6 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"ags": "ags",
|
|
||||||
"emacs": "emacs",
|
"emacs": "emacs",
|
||||||
"eww": "eww",
|
"eww": "eww",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
|
|
14
flake.nix
14
flake.nix
|
@ -31,10 +31,10 @@
|
||||||
url = "github:elkowar/eww";
|
url = "github:elkowar/eww";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
ags = {
|
# ags = {
|
||||||
url = "github:Aylur/ags";
|
# url = "github:Aylur/ags";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
# inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
# };
|
||||||
emacs = {
|
emacs = {
|
||||||
url = "github:nix-community/emacs-overlay/dd38645351b6f14cda47c81456131c86b11386db";
|
url = "github:nix-community/emacs-overlay/dd38645351b6f14cda47c81456131c86b11386db";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
@ -64,7 +64,7 @@
|
||||||
emacs,
|
emacs,
|
||||||
nix-bitcoin,
|
nix-bitcoin,
|
||||||
eww,
|
eww,
|
||||||
ags,
|
# ags,
|
||||||
stylix, ... }:
|
stylix, ... }:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
@ -117,7 +117,7 @@
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
home-manager.extraSpecialArgs = { inherit ags; };
|
# home-manager.extraSpecialArgs = { inherit ags; };
|
||||||
home-manager.users.chris = import ./home/home.nix;
|
home-manager.users.chris = import ./home/home.nix;
|
||||||
home-manager.sharedModules = [ plasma-manager.homeManagerModules.plasma-manager ];
|
home-manager.sharedModules = [ plasma-manager.homeManagerModules.plasma-manager ];
|
||||||
}
|
}
|
||||||
|
@ -137,7 +137,7 @@
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
home-manager.extraSpecialArgs = { inherit ags; };
|
# home-manager.extraSpecialArgs = { inherit ags; };
|
||||||
home-manager.users.chris = import ./home/home.nix;
|
home-manager.users.chris = import ./home/home.nix;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, pkgs, ags, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
laptop = builtins.readFile "/etc/hostname" == "syl\n";
|
laptop = builtins.readFile "/etc/hostname" == "syl\n";
|
||||||
|
@ -6,7 +6,7 @@ in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./modules/hyprland.nix
|
./modules/hyprland.nix
|
||||||
ags.homeManagerModules.default
|
# ags.homeManagerModules.default
|
||||||
# ./modules/plasma.nix
|
# ./modules/plasma.nix
|
||||||
];
|
];
|
||||||
# Home Manager needs a bit of information about you and the
|
# Home Manager needs a bit of information about you and the
|
||||||
|
@ -801,14 +801,14 @@ tooltip label {
|
||||||
source = ../.config/fish/functions;
|
source = ../.config/fish/functions;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.ags = {
|
# programs.ags = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
extraPackages = with pkgs; [
|
# extraPackages = with pkgs; [
|
||||||
gtksourceview
|
# gtksourceview
|
||||||
webkitgtk
|
# webkitgtk
|
||||||
accountsservice
|
# accountsservice
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
|
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -309,9 +309,8 @@ in
|
||||||
"SUPERALT,a,movetoworkspace,special:agenda"
|
"SUPERALT,a,movetoworkspace,special:agenda"
|
||||||
"SUPER,g,togglespecialworkspace,agenda"
|
"SUPER,g,togglespecialworkspace,agenda"
|
||||||
|
|
||||||
"SUPERSHIFT,g,exec,ags --toggle-window ${if laptop then "bar0" else "bar2"}"
|
"SUPERSHIFT,g,exec,waybar.sh"
|
||||||
"SUPERALT,n,exec,eww update rightside=true"
|
"SUPERALT,n,exec,eww update rightside=true"
|
||||||
"SUPERSHIFT,b,exec,restart-ags"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
binde = [
|
binde = [
|
||||||
|
|
Loading…
Reference in a new issue