Disable potentially troublesome Gnome configs
This commit is contained in:
parent
882fb5bf6a
commit
71b9db44d6
20
flake.lock
20
flake.lock
|
@ -150,11 +150,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1715930644,
|
||||
"narHash": "sha256-W9pyM3/vePxrffHtzlJI6lDS3seANQ+Nqp+i58O46LI=",
|
||||
"lastModified": 1716457508,
|
||||
"narHash": "sha256-ZxzffLuWRyuMrkVVq7wastNUqeO0HJL9xqfY1QsYaqo=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "e3ad5108f54177e6520535768ddbf1e6af54b59d",
|
||||
"rev": "850cb322046ef1a268449cf1ceda5fd24d930b05",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -250,11 +250,11 @@
|
|||
"nix-secrets": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1716411436,
|
||||
"narHash": "sha256-eSB/4OiWo6lhqENy3YkZPLd+3+jGHxqUDQk1lYR3RoQ=",
|
||||
"lastModified": 1716476738,
|
||||
"narHash": "sha256-xeGy/omF4PykBsyzc7SfEd28/nyNNlvuLAk4FxCqvZM=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "e91fbeb01a085cff2b8bc03503efef927306ada4",
|
||||
"revCount": 32,
|
||||
"rev": "6c75cdf7bafb4ccb6ae6580f10a9c44313b5dc9a",
|
||||
"revCount": 36,
|
||||
"type": "git",
|
||||
"url": "file:///home/aires/Development/nix-configuration/nix-secrets"
|
||||
},
|
||||
|
@ -313,11 +313,11 @@
|
|||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1716293225,
|
||||
"narHash": "sha256-pU9ViBVE3XYb70xZx+jK6SEVphvt7xMTbm6yDIF4xPs=",
|
||||
"lastModified": 1716330097,
|
||||
"narHash": "sha256-8BO3B7e3BiyIDsaKA0tY8O88rClYRTjvAp66y+VBUeU=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "3eaeaeb6b1e08a016380c279f8846e0bd8808916",
|
||||
"rev": "5710852ba686cc1fd0d3b8e22b3117d43ba374c2",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -46,8 +46,6 @@ in
|
|||
programs.virt-manager.enable = true;
|
||||
|
||||
# Allow the default bridge interface to access the network
|
||||
networking.firewall.trustedInterfaces = [
|
||||
"virbr0"
|
||||
];
|
||||
networking.firewall.trustedInterfaces = [ "virbr0" ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -105,15 +105,17 @@ with lib;
|
|||
};
|
||||
|
||||
# Gnome settings specific to aires on Shura
|
||||
dconf.settings = lib.mkIf (config.networking.hostName == "Shura") {
|
||||
"org/gnome/desktop/interface" = {
|
||||
# Increase font scaling;
|
||||
text-scaling-factor = 1.3;
|
||||
/*
|
||||
dconf.settings = lib.mkIf (config.networking.hostName == "Shura") {
|
||||
"org/gnome/desktop/interface" = {
|
||||
# Increase font scaling;
|
||||
text-scaling-factor = 1.3;
|
||||
|
||||
# Dark mode
|
||||
color-scheme = "prefer-dark";
|
||||
# Dark mode
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
};
|
||||
};
|
||||
*/
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
edge-tiling = true;
|
||||
workspaces-only-on-primary = false;
|
||||
experimental-features = [
|
||||
"scale-monitor-framebuffer" # Fractional scaling
|
||||
# "scale-monitor-framebuffer" # Fractional scaling
|
||||
"variable-refresh-rate"
|
||||
];
|
||||
};
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 0aeea31febf6ecd9b97f3b92eeafb1be76733419
|
||||
Subproject commit 6c75cdf7bafb4ccb6ae6580f10a9c44313b5dc9a
|
Loading…
Reference in a new issue