Skip to content

Commit 06568f1

Browse files
committed
feat: remove ags
1 parent 5168e83 commit 06568f1

File tree

4 files changed

+37
-121
lines changed

4 files changed

+37
-121
lines changed

flake.lock

Lines changed: 21 additions & 116 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@
161161
configLib = import ./lib { inherit lib; };
162162

163163
# TODO: make it so that ags will be in pkgs
164-
ags = pkgsFor.x86_64-linux.callPackage ./home/denrei/common/optional/ags { inherit inputs; };
164+
# ags = pkgsFor.x86_64-linux.callPackage ./home/denrei/common/optional/ags { inherit inputs; };
165165
specialArgs = {
166166
inherit
167-
ags
167+
# ags
168168
inputs
169169
outputs
170170
configVars
@@ -245,7 +245,13 @@
245245
};
246246
# HP Laptop home
247247
"denrei@canopus" = lib.homeManagerConfiguration {
248-
pkgs = pkgsFor.x86_64-linux;
248+
pkgs = import nixpkgs {
249+
system = "x86_64-linux";
250+
overlays = [
251+
inputs.hyprpanel.overlay
252+
];
253+
config.allowUnfree = true;
254+
};
249255
extraSpecialArgs = specialArgs;
250256
modules = [
251257
./home/denrei/canopus.nix

home/denrei/canopus.nix

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
{configVars, ...}: {
1+
{ configVars, ... }:
2+
{
23
imports = [
34
#################### Required Configs ####################
45
common/core # required
56

67
#################### Host-specific Optional Configs ####################
78
common/optional/theme.nix
89
common/optional/sops.nix
9-
common/optional/ags.nix
10+
# common/optional/ags.nix
1011
common/optional/starship.nix
1112
common/optional/gdrive.nix
1213
# common/optional/solana.nix
@@ -16,6 +17,9 @@
1617
common/optional/desktops
1718
common/optional/browsers
1819
common/optional/media
20+
21+
common/optional/hyprpanel
22+
common/optional/rofi
1923
];
2024

2125
home = {

home/denrei/common/optional/desktops/hyprland/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ in
175175
# "SHIFT,Print, ${e} -r 'recorder.screenshot(true)'"
176176
# "SUPER, V, ${e} -r 'launcher.open(\":ch \")'"
177177
"SUPER, V, exec, rofi -modi clipboard:${pkgs.cliphist}/bin/cliphist-rofi-img -show clipboard -show-icons"
178+
"SUPER, C, exec, rofi -show calc"
178179
# "SUPER, period, ${e} -r 'launcher.open(\":em \")'"
179180
# "SUPER, period, exec, smile"
180181
"SUPER, period, exec, rofi -show emoji"

0 commit comments

Comments
 (0)