From 1cd73940292265925cea4e04e00a3f19e9a6e1a3 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 21 May 2024 15:55:26 -0300 Subject: [PATCH 01/15] chore: add nofail to drives in hardware-configuration --- hardware-configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hardware-configuration.nix b/hardware-configuration.nix index a4d134b..60a6183 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -25,16 +25,19 @@ fileSystems."/mnt/ssd" = { device = "/dev/disk/by-uuid/f27f2224-d351-46fd-89f5-991de36166ad"; fsType = "ext4"; + options = [ "defaults" "nofail" ]; }; fileSystems."/mnt/internal" = { device = "/dev/disk/by-uuid/b8541c0d-9146-4388-b217-431f196957cc"; fsType = "ext4"; + options = [ "defaults" "nofail" ]; }; fileSystems."/mnt/media" = { device = "/dev/disk/by-uuid/52c17b8b-46c1-4870-b86c-c3b9f4bd4434"; fsType = "ext4"; + options = [ "defaults" "nofail" ]; }; swapDevices = [ ]; From efe625634acee6cebf1d2b6b9541e2fbb0d27c24 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 21 May 2024 15:55:59 -0300 Subject: [PATCH 02/15] hm: replace neofetch with fastfetch --- home-manager.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager.nix b/home-manager.nix index 1dd1b97..c8270c2 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -73,6 +73,7 @@ brightnessctl discord element-desktop + fastfetch firefox pavucontrol pulseaudio @@ -110,7 +111,6 @@ ## Development lazygit - neofetch vscode-extensions.vadimcn.vscode-lldb ## Desktop environment From 2b43b1e8094040f7a51ec5784ac771bf432c8556 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 21 May 2024 15:53:09 -0300 Subject: [PATCH 03/15] hm(neovim): add gcc for treesitter --- programs/neovim/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/neovim/default.nix b/programs/neovim/default.nix index 914766a..30493f0 100644 --- a/programs/neovim/default.nix +++ b/programs/neovim/default.nix @@ -14,6 +14,7 @@ # C/C++ clang-tools + gcc # Needed for treesitter # HTML/CSS emmet-ls From beb914b9e51a815f7d13885d2dc7e90e8f1261cf Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 21 May 2024 15:53:32 -0300 Subject: [PATCH 04/15] nixos: add sshfs package --- nixos.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos.nix b/nixos.nix index fb1d343..5f60a37 100644 --- a/nixos.nix +++ b/nixos.nix @@ -309,6 +309,7 @@ zoxide # File managing + sshfs yazi ## Libraries From 0667ef056766d6e0adaae81520249d524ea5c91b Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Wed, 22 May 2024 10:28:56 -0300 Subject: [PATCH 05/15] nixos(archi): remove idle custom game --- services/archi.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/services/archi.nix b/services/archi.nix index 85a11d0..5f3c632 100644 --- a/services/archi.nix +++ b/services/archi.nix @@ -12,7 +12,6 @@ settings = { CustomGamePlayedWhileFarming = "In the fields"; - CustomGamePlayedWhileIdle = "Out from the fields"; }; }; From a8e7b39a4aa389676b733c0a4d3ad7fdaa5ae2a1 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Thu, 23 May 2024 02:05:49 -0300 Subject: [PATCH 06/15] hm(neovim): indentation changes --- programs/neovim/lua/plugins/astrocore.lua | 35 +++++++++++++---------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/programs/neovim/lua/plugins/astrocore.lua b/programs/neovim/lua/plugins/astrocore.lua index ee4b658..ed325ae 100644 --- a/programs/neovim/lua/plugins/astrocore.lua +++ b/programs/neovim/lua/plugins/astrocore.lua @@ -11,11 +11,11 @@ return { -- Configure core features of AstroNvim features = { large_buf = { size = 1024 * 500, lines = 10000 }, -- set global limits for large files for disabling features like treesitter - autopairs = true, -- enable autopairs at start - cmp = true, -- enable completion at start - diagnostics_mode = 3, -- diagnostic mode on start (0 = off, 1 = no signs/virtual text, 2 = no virtual text, 3 = on) - highlighturl = true, -- highlight URLs at start - notifications = true, -- enable notifications at start + autopairs = true, -- enable autopairs at start + cmp = true, -- enable completion at start + diagnostics_mode = 3, -- diagnostic mode on start (0 = off, 1 = no signs/virtual text, 2 = no virtual text, 3 = on) + highlighturl = true, -- highlight URLs at start + notifications = true, -- enable notifications at start }, -- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on diagnostics = { @@ -24,15 +24,20 @@ return { }, -- vim options can be configured here options = { - opt = { -- vim.opt. - relativenumber = true, -- sets vim.opt.relativenumber - number = true, -- sets vim.opt.number - spell = false, -- sets vim.opt.spell - signcolumn = "auto", -- sets vim.opt.signcolumn to auto - wrap = false, -- sets vim.opt.wrap + opt = { -- vim.opt. + autoindent = true, -- indents automatically based on context + expandtab = true, -- use spaces instead of tabs grepprg = "rg --vimgrep", -- use ripgrep on grep actions + number = true, -- sets vim.opt.number + relativenumber = true, -- sets vim.opt.relativenumber + shiftwidth = 2, -- how many spaces after indentation + signcolumn = "auto", -- sets vim.opt.signcolumn to auto + smartindent = true, -- smartly indent + spell = false, -- sets vim.opt.spell + tabstop = 2, -- how many spaces to indent when pressing tab + wrap = false, -- sets vim.opt.wrap }, - g = { -- vim.g. + g = { -- vim.g. -- configure global vim variables (vim.g) -- NOTE: `mapleader` and `maplocalleader` must be set in the AstroNvim opts or before `lazy.setup` -- This can be found in the `lua/lazy_setup.lua` file @@ -58,9 +63,9 @@ return { -- mappings seen under group name "Buffer" ["bD"] = { function() - require("astroui.status.heirline").buffer_picker( - function(bufnr) require("astrocore.buffer").close(bufnr) end - ) + require("astroui.status.heirline").buffer_picker(function(bufnr) + require("astrocore.buffer").close(bufnr) + end) end, desc = "Pick to close", }, From 3c0abf9d9ed75136c36a8e049f2e537c4d97967c Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Sat, 25 May 2024 19:50:55 -0300 Subject: [PATCH 07/15] flake: update --- flake.lock | 12 ++++++------ kernel/zenergy.nix | 4 ++-- programs/hyprland/default.nix | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index b09137a..c5402b0 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1715930644, - "narHash": "sha256-W9pyM3/vePxrffHtzlJI6lDS3seANQ+Nqp+i58O46LI=", + "lastModified": 1716668005, + "narHash": "sha256-daQD/pphMJUriHiWfKo9V4Kpi7+GIAE0As47Mpko0TI=", "owner": "nix-community", "repo": "home-manager", - "rev": "e3ad5108f54177e6520535768ddbf1e6af54b59d", + "rev": "d179da4e81bcd4227e8abf4b62b92c4ae214ae39", "type": "github" }, "original": { @@ -154,11 +154,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1716137900, - "narHash": "sha256-sowPU+tLQv8GlqtVtsXioTKeaQvlMz/pefcdwg8MvfM=", + "lastModified": 1716509168, + "narHash": "sha256-4zSIhSRRIoEBwjbPm3YiGtbd8HDWzFxJjw5DYSDy1n8=", "owner": "nixos", "repo": "nixpkgs", - "rev": "6c0b7a92c30122196a761b440ac0d46d3d9954f1", + "rev": "bfb7a882678e518398ce9a31a881538679f6f092", "type": "github" }, "original": { diff --git a/kernel/zenergy.nix b/kernel/zenergy.nix index 43865ee..cd89f03 100644 --- a/kernel/zenergy.nix +++ b/kernel/zenergy.nix @@ -8,8 +8,8 @@ in stdenv.mkDerivation { src = fetchFromGitHub { owner = "BoukeHaarsma23"; repo = "zenergy"; - rev = "a3e124477ee8197015481156b90100d49fa3cd84"; - hash = "sha256-s1aoipSsLKO23kTd2uGxVUpqYSeitiz3UIoDIxg/Dj8="; + rev = "d65592b3c9d171ba70e6017e0827191214d81937"; + hash = "sha256-10hiUHJvLTG3WGrr4WXMo/mCoJGFqWk2l5PryjNhcHg="; }; hardeningDisable = [ "format" "pic" ]; diff --git a/programs/hyprland/default.nix b/programs/hyprland/default.nix index b83a171..ddb43b9 100644 --- a/programs/hyprland/default.nix +++ b/programs/hyprland/default.nix @@ -1,4 +1,4 @@ -{ pkgs, hyprland, ... }: +{ hyprland, ... }: { imports = [ hyprland.homeManagerModules.default ]; From 428c6cb12f55cc76a94a2ca9cc0c93484cb38ef5 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 28 May 2024 01:16:30 -0300 Subject: [PATCH 08/15] flake: remove hyprland nixos module We now use the nixpkgs hyprland --- flake.lock | 204 +--------------------------------- flake.nix | 10 +- nixos.nix | 3 + programs/hyprland/default.nix | 4 - 4 files changed, 7 insertions(+), 214 deletions(-) diff --git a/flake.lock b/flake.lock index c5402b0..8176c47 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1716668005, - "narHash": "sha256-daQD/pphMJUriHiWfKo9V4Kpi7+GIAE0As47Mpko0TI=", + "lastModified": 1716847642, + "narHash": "sha256-rjEswRV0o23eBBils8lJXyIGha+l/VjV73IPg+ztxgk=", "owner": "nix-community", "repo": "home-manager", - "rev": "d179da4e81bcd4227e8abf4b62b92c4ae214ae39", + "rev": "10c7c219b7dae5795fb67f465a0d86cbe29f25fa", "type": "github" }, "original": { @@ -20,138 +20,6 @@ "type": "github" } }, - "hyprcursor": { - "inputs": { - "hyprlang": [ - "hyprland", - "hyprlang" - ], - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1713612213, - "narHash": "sha256-zJboXgWNpNhKyNF8H/3UYzWkx7w00TOCGKi3cwi+tsw=", - "owner": "hyprwm", - "repo": "hyprcursor", - "rev": "cab4746180f210a3c1dd3d53e45c510e309e90e1", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprcursor", - "type": "github" - } - }, - "hyprland": { - "inputs": { - "hyprcursor": "hyprcursor", - "hyprland-protocols": "hyprland-protocols", - "hyprlang": "hyprlang", - "hyprwayland-scanner": "hyprwayland-scanner", - "nixpkgs": [ - "nixpkgs" - ], - "systems": "systems", - "wlroots": "wlroots", - "xdph": "xdph" - }, - "locked": { - "lastModified": 1714837352, - "narHash": "sha256-QzzJTb+0CBqgAT0wKZsOt1rky5+u2zMUlNxbZcGj2VM=", - "owner": "hyprwm", - "repo": "Hyprland", - "rev": "cba1ade848feac44b2eda677503900639581c3f4", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "ref": "v0.40.0", - "repo": "Hyprland", - "type": "github" - } - }, - "hyprland-protocols": { - "inputs": { - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1691753796, - "narHash": "sha256-zOEwiWoXk3j3+EoF3ySUJmberFewWlagvewDRuWYAso=", - "owner": "hyprwm", - "repo": "hyprland-protocols", - "rev": "0c2ce70625cb30aef199cb388f99e19a61a6ce03", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprland-protocols", - "type": "github" - } - }, - "hyprlang": { - "inputs": { - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1713121246, - "narHash": "sha256-502X0Q0fhN6tJK7iEUA8CghONKSatW/Mqj4Wappd++0=", - "owner": "hyprwm", - "repo": "hyprlang", - "rev": "78fcaa27ae9e1d782faa3ff06c8ea55ddce63706", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprlang", - "type": "github" - } - }, - "hyprwayland-scanner": { - "inputs": { - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1714755542, - "narHash": "sha256-D0pg+ZRwrt4lavZ97Ca8clsgbPA3duLj8iEM7riaIFY=", - "owner": "hyprwm", - "repo": "hyprwayland-scanner", - "rev": "1270ebaa539e56d61b708c24b072b09cbbd3a828", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprwayland-scanner", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1716509168, @@ -171,74 +39,8 @@ "root": { "inputs": { "home-manager": "home-manager", - "hyprland": "hyprland", "nixpkgs": "nixpkgs" } - }, - "systems": { - "locked": { - "lastModified": 1689347949, - "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", - "owner": "nix-systems", - "repo": "default-linux", - "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default-linux", - "type": "github" - } - }, - "wlroots": { - "flake": false, - "locked": { - "lastModified": 1713731601, - "narHash": "sha256-bdcKdtLkusvv85DNuJsajZLFeq7bXp+x5AGP1Sd4wD8=", - "owner": "hyprwm", - "repo": "wlroots-hyprland", - "rev": "5c1d51c5a2793480f5b6c4341ad0797052aec2ea", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "wlroots-hyprland", - "rev": "5c1d51c5a2793480f5b6c4341ad0797052aec2ea", - "type": "github" - } - }, - "xdph": { - "inputs": { - "hyprland-protocols": [ - "hyprland", - "hyprland-protocols" - ], - "hyprlang": [ - "hyprland", - "hyprlang" - ], - "nixpkgs": [ - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1714060055, - "narHash": "sha256-j43TS9wv9luaAlpxcxw0sjxkbcc2mGANVR2RYgo3RCw=", - "owner": "hyprwm", - "repo": "xdg-desktop-portal-hyprland", - "rev": "0fe840441e43da12cd7865ed9aa8cdc35a8da85a", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "xdg-desktop-portal-hyprland", - "type": "github" - } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 18b0a3a..28bfa66 100644 --- a/flake.nix +++ b/flake.nix @@ -8,14 +8,9 @@ url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; - - hyprland = { - url = "github:hyprwm/Hyprland/v0.40.0"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; - outputs = { self, home-manager, hyprland, nixpkgs, ... }@inputs: + outputs = { self, home-manager, nixpkgs, ... }@inputs: let system = "x86_64-linux"; in { nixosConfigurations."nixos" = @@ -24,9 +19,6 @@ modules = [ ./nixos.nix - hyprland.nixosModules.default - { programs.hyprland.enable = true; } - home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; diff --git a/nixos.nix b/nixos.nix index 5f60a37..7bdad28 100644 --- a/nixos.nix +++ b/nixos.nix @@ -206,6 +206,9 @@ theme = "${import ./theming/sddm.nix { inherit pkgs; }}"; }; + # Enable Hyprland + programs.hyprland.enable = true; + # Enable OpenGL. hardware.opengl = { enable = true; diff --git a/programs/hyprland/default.nix b/programs/hyprland/default.nix index ddb43b9..a90e5b9 100644 --- a/programs/hyprland/default.nix +++ b/programs/hyprland/default.nix @@ -1,8 +1,4 @@ -{ hyprland, ... }: - { - imports = [ hyprland.homeManagerModules.default ]; - wayland.windowManager.hyprland = { enable = true; From dc358410322e5c0bbf187c0fd620dda16fc51fef Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 4 Jun 2024 17:45:34 -0300 Subject: [PATCH 09/15] hm(neovim): add svelte to lsp servers --- programs/neovim/lua/plugins/astrolsp.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/neovim/lua/plugins/astrolsp.lua b/programs/neovim/lua/plugins/astrolsp.lua index c44e4fb..91a9954 100644 --- a/programs/neovim/lua/plugins/astrolsp.lua +++ b/programs/neovim/lua/plugins/astrolsp.lua @@ -29,6 +29,7 @@ return { "rust", "tsx", "typescript", + "svelte", }, ignore_filetypes = { -- disable format on save for specified filetypes -- "python", From 9155efeaa30f54ea52204e16ede0720e3673aad9 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 4 Jun 2024 17:45:53 -0300 Subject: [PATCH 10/15] hm: add tmux --- home-manager.nix | 1 + programs/tmux/default.nix | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 programs/tmux/default.nix diff --git a/home-manager.nix b/home-manager.nix index c8270c2..14eb32d 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -14,6 +14,7 @@ ./programs/neovim ./programs/obs-studio.nix ./programs/rofi + ./programs/tmux ./programs/waybar.nix ./programs/wezterm ]; diff --git a/programs/tmux/default.nix b/programs/tmux/default.nix new file mode 100644 index 0000000..2ed07ac --- /dev/null +++ b/programs/tmux/default.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: + +{ + programs.tmux = { + enable = true; + clock24 = true; + plugins = with pkgs.tmuxPlugins; [ + { + plugin = catppuccin; + extraConfig = '' + set -g @catppuccin_flavour 'frappe' + ''; + } + ]; + }; +} From be42648fd87a328e92ea2f1b87d21848674373f1 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 4 Jun 2024 17:46:18 -0300 Subject: [PATCH 11/15] nixos: move to kernel 6.9.3 --- nixos.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos.nix b/nixos.nix index 7bdad28..da0fdf5 100644 --- a/nixos.nix +++ b/nixos.nix @@ -44,7 +44,7 @@ ## # Kernel - boot.kernelPackages = pkgs.linuxPackages_zen; + boot.kernelPackages = pkgs.linuxPackages_latest; # Add AMD drivers. boot.initrd.kernelModules = [ "amdgpu" ]; @@ -52,7 +52,7 @@ # TODO: FIX IT BEING BEING OVERWRITTEN boot.extraModulePackages = [ config.boot.kernelPackages.v4l2loopback - (pkgs.callPackage ./kernel/zenergy.nix { kernel = pkgs.linux_zen; }) + (pkgs.callPackage ./kernel/zenergy.nix { kernel = pkgs.linux_latest; }) ]; # Bootloader. From 65b839f8e405153b0fc50edb84e6a3b80c625735 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 4 Jun 2024 17:46:48 -0300 Subject: [PATCH 12/15] nixos: add storage optimization --- nixos.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos.nix b/nixos.nix index da0fdf5..b9779a0 100644 --- a/nixos.nix +++ b/nixos.nix @@ -29,6 +29,7 @@ }; # Optimize storage + nix.optimise.automatic = true; nix.settings.auto-optimise-store = true; # This value determines the NixOS release from which the default From 4d9577e3067891b677457fc5f2b09e9fedb7c2dd Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 4 Jun 2024 17:47:21 -0300 Subject: [PATCH 13/15] hm: remove programs not used and add qdirstat --- home-manager.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/home-manager.nix b/home-manager.nix index 14eb32d..69557af 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -1,4 +1,4 @@ -{ config, pkgs, custom-neovim, ... }: +{ pkgs, ... }: { # @@ -73,13 +73,11 @@ # Utilities brightnessctl discord - element-desktop fastfetch firefox pavucontrol - pulseaudio qbittorrent - tigervnc + qdirstat vesktop vlc yt-dlp @@ -96,10 +94,7 @@ spotify # Gaming - airshipper - dolphin-emu protontricks - r2modman wineWowPackages.stagingFull winetricks xonotic From 0df1bcfd655b5860806116ff4f02d2fbb17812fe Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 4 Jun 2024 17:47:38 -0300 Subject: [PATCH 14/15] hm: correct cursor settings --- home-manager.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/home-manager.nix b/home-manager.nix index 69557af..fdf3440 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -237,13 +237,10 @@ ## Theming home.pointerCursor = { package = pkgs.catppuccin-cursors.frappeLavender; - name = "Catppuccin-Frappe-Lavender-Cursors"; + name = "catppuccin-frappe-lavender-cursors"; gtk.enable = true; - x11 = { - enable = true; - defaultCursor = "Catppuccin-Frappe-Lavender-Cursors"; - }; + x11.enable = true; }; # Configure GTK. From dc7acf7a43967a2d5c11ed3175a8087520e7fcac Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Tue, 4 Jun 2024 17:47:44 -0300 Subject: [PATCH 15/15] flake: update --- flake.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index 8176c47..ba47222 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1716847642, - "narHash": "sha256-rjEswRV0o23eBBils8lJXyIGha+l/VjV73IPg+ztxgk=", + "lastModified": 1717316182, + "narHash": "sha256-Xi0EpZcu39N0eW7apLjFfUOR9y80toyjYizez7J1wMI=", "owner": "nix-community", "repo": "home-manager", - "rev": "10c7c219b7dae5795fb67f465a0d86cbe29f25fa", + "rev": "9b53a10f4c91892f5af87cf55d08fba59ca086af", "type": "github" }, "original": { @@ -22,11 +22,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1716509168, - "narHash": "sha256-4zSIhSRRIoEBwjbPm3YiGtbd8HDWzFxJjw5DYSDy1n8=", + "lastModified": 1717196966, + "narHash": "sha256-yZKhxVIKd2lsbOqYd5iDoUIwsRZFqE87smE2Vzf6Ck0=", "owner": "nixos", "repo": "nixpkgs", - "rev": "bfb7a882678e518398ce9a31a881538679f6f092", + "rev": "57610d2f8f0937f39dbd72251e9614b1561942d8", "type": "github" }, "original": {