diff options
| author | Alexander Kassouni <alex@kassouni.net> | 2026-08-28 23:27:52 -0700 |
|---|---|---|
| committer | Alexander Kassouni <alex@kassouni.net> | 2026-08-28 23:27:52 -0700 |
| commit | 8dcf355819cc6cd1e87924218c1adcd900ecda84 (patch) | |
| tree | 940ef0f569279f4ab78c1320321ff4c07453eb5a /users/kassouni | |
| parent | 332b06fd9baefdfa2b043b8e2c72b8c110940fc5 (diff) | |
refactor base nixos modules
Diffstat (limited to 'users/kassouni')
| -rw-r--r-- | users/kassouni/fonts.nix | 6 | ||||
| -rw-r--r-- | users/kassouni/home.nix | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/users/kassouni/fonts.nix b/users/kassouni/fonts.nix new file mode 100644 index 0000000..d6d40f7 --- /dev/null +++ b/users/kassouni/fonts.nix @@ -0,0 +1,6 @@ +{pkgs, ...}: { + fonts.fontconfig.enable = true; + home.packages = with pkgs; [ + dejavu_fonts + ]; +} diff --git a/users/kassouni/home.nix b/users/kassouni/home.nix index dc4675e..1b9fe48 100644 --- a/users/kassouni/home.nix +++ b/users/kassouni/home.nix @@ -11,6 +11,7 @@ ./fuzzel.nix ./rofi.nix ./music.nix + ./fonts.nix ./slippi.nix ./ssh.nix ./rip.nix @@ -65,6 +66,10 @@ services.picom = { enable = true; + # modesetting has no TearFree option, so the compositor has to do the + # syncing. home-manager defaults vSync to false, which tears. + backend = "glx"; + vSync = true; }; services.syncthing.enable = true; |
