-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated wayper module to new project module - Integrated agenix - updated taskwarrior to use encrypted secrets
- Loading branch information
1 parent
a9c0987
commit a991319
Showing
18 changed files
with
997 additions
and
550 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
{ | ||
# browsers = ./browsers; | ||
wayland-shell = ./wayland-shell; | ||
imports = [ | ||
./browsers/firefox.nix | ||
./tools/task.nix | ||
./wayland-shell/ags/default.nix | ||
./wayland-shell/wayper.nix | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
config, | ||
inputs, | ||
lib, | ||
... | ||
}: | ||
with lib; let | ||
cfg = config.modules.wayland-shell.wayper; | ||
in { | ||
imports = [inputs.wayper.homeManagerModules.default]; | ||
|
||
options.modules.wayland-shell.wayper = { | ||
enable = mkOption { | ||
description = "wayper, a wallpaper setter for wayland"; | ||
default = false; | ||
type = types.bool; | ||
}; | ||
}; | ||
|
||
config = mkIf (cfg.enable) { | ||
services.wayper = { | ||
enable = true; | ||
monitorConfigs = [ | ||
{ | ||
name = "eDP-1"; | ||
duration = 60; | ||
path = "/home/luqman/wallpapers/notseiso/horizontal"; | ||
} | ||
{ | ||
name = "HDMI-A-1"; | ||
duration = 60; | ||
path = "/home/luqman/wallpapers/seiso/horizontal"; | ||
} | ||
{ | ||
name = "DP-1"; | ||
duration = 60; | ||
path = "/home/luqman/wallpapers/seiso/horizontal"; | ||
} | ||
]; | ||
}; | ||
}; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
inputs, | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: { | ||
imports = [ | ||
inputs.agenix.homeManagerModules.default | ||
]; | ||
|
||
age = { | ||
identityPaths = ["/home/luqman/.ssh/agenix"]; | ||
secretsDir = "${config.home.homeDirectory}/.agenix/agenix"; | ||
secretsMountPoint = "${config.home.homeDirectory}/.agenix/agenix.d"; | ||
|
||
secrets.taskd_credentials.file = ./taskd_credentials.age; | ||
secrets.taskd_ca.file = ./taskd_ca.age; | ||
secrets.taskd_key.file = ./taskd_key.age; | ||
secrets.taskd_cert.file = ./taskd_cert.age; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
let | ||
general_pub = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDW+oXpKYSILzxc4O5Nrlf1oObQQc4XrawHWQmd5yvspQI6G5138KhX4woq65P1dGRguLvj3wWwJt5zKf533995radcusma9G1YDMWgkq+bKz+eNvY4n3zkA3EeKAlLsdwf/bA1ydLqK/LOTmBjTQqoxJsiQ7sqWCQFKZxRPlaRKsEnL8PmhkQNll8sJJ0GY559kODKArAjqYxNVPnOjijfl80WjIplrxKOdlaK79zJxv955lQTRNotI/wITnbOSpi2IMrbhCXQ5IViVj1fr5CwxPO1hrz5wRaycUhErtxzQS+Cvfkp5ooaOJSNRtmxoGC0hPxO8Vi+SrL28mH8ziPn"; | ||
agenix_pub = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPS7So2hAtYNZQNkqTzq0+b2wDgsx++VpKLMttkA4F00 luqman@asuna"; | ||
in { | ||
"taskd_credentials.age".publicKeys = [general_pub agenix_pub]; | ||
"taskd_ca.age".publicKeys = [general_pub agenix_pub]; | ||
"taskd_key.age".publicKeys = [general_pub agenix_pub]; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.