feat: use device.is "name" instead of device.hasGui for most items
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
device,
|
||||
...
|
||||
}:
|
||||
lib.optionalAttrs device.hasGui {
|
||||
lib.optionalAttrs (device.is "ryu") {
|
||||
imports = [
|
||||
# ./audacity.nix
|
||||
./blueman.nix
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
...
|
||||
}: {
|
||||
programs.foot = {
|
||||
enable = device.hasGui && pkgs.stdenv.isLinux;
|
||||
enable = device.is "ryu";
|
||||
server.enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
|
||||
Reference in New Issue
Block a user