diff options
Diffstat (limited to 'users')
-rw-r--r-- | users/tazjin/nixos/modules/hidpi.nix | 4 | ||||
-rw-r--r-- | users/tazjin/nixos/polyanka/default.nix | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/users/tazjin/nixos/modules/hidpi.nix b/users/tazjin/nixos/modules/hidpi.nix index 7fa3e4193341..2ff61d499a2e 100644 --- a/users/tazjin/nixos/modules/hidpi.nix +++ b/users/tazjin/nixos/modules/hidpi.nix @@ -7,8 +7,10 @@ # screen settings to do conditional initialisation (mostly for Emacs). environment.variables.HIDPI_SCREEN = "true"; + # TODO(tazjin): this option has been removed and needs to be replaced + # by manual configuration: https://github.com/NixOS/nixpkgs/issues/222805 # Ensure a larger font size in early boot stage. - hardware.video.hidpi.enable = true; + # hardware.video.hidpi.enable = true; # Bump DPI across the board. # TODO(tazjin): This should actually be set per monitor, but I diff --git a/users/tazjin/nixos/polyanka/default.nix b/users/tazjin/nixos/polyanka/default.nix index 261071849514..eed36d656a34 100644 --- a/users/tazjin/nixos/polyanka/default.nix +++ b/users/tazjin/nixos/polyanka/default.nix @@ -80,6 +80,8 @@ in group = "quassel"; }; + programs.fish.enable = true; + users.users.tazjin = { isNormalUser = true; extraGroups = [ "wheel" ]; |