From e1738b4b2e1783d99d5d14bba7f32a8d2ef888b5 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 20 Oct 2024 19:17:56 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(home):=20Install=20bat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rose Pine works!!!!!!!! --- flake.lock | 30 +++++++++++++++++++++++------- home/default.nix | 12 ++++++++++-- 2 files changed, 33 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index 2ef62d6..6736dc1 100644 --- a/flake.lock +++ b/flake.lock @@ -68,11 +68,11 @@ ] }, "locked": { - "lastModified": 1729260213, - "narHash": "sha256-jAvHoU/1y/yCuXzr2fNF+q6uKmr8Jj2xgAisK4QB9to=", + "lastModified": 1729459288, + "narHash": "sha256-gBOVJv+q6Mx8jGvwX7cE6J8+sZmi1uxpRVsO7WxvVuQ=", "owner": "nix-community", "repo": "home-manager", - "rev": "09a0c0c02953318bf94425738c7061ffdc4cba75", + "rev": "1e27f213d77fc842603628bcf2df6681d7d08f7e", "type": "github" }, "original": { @@ -83,11 +83,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1729070438, - "narHash": "sha256-KOTTUfPkugH52avUvXGxvWy8ibKKj4genodIYUED+Kc=", + "lastModified": 1729256560, + "narHash": "sha256-/uilDXvCIEs3C9l73JTACm4quuHUsIHcns1c+cHUJwA=", "owner": "nixos", "repo": "nixpkgs", - "rev": "5785b6bb5eaae44e627d541023034e1601455827", + "rev": "4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0", "type": "github" }, "original": { @@ -101,7 +101,23 @@ "inputs": { "alejandra": "alejandra", "home-manager": "home-manager", - "nixpkgs": "nixpkgs" + "nixpkgs": "nixpkgs", + "rose-pine": "rose-pine" + } + }, + "rose-pine": { + "locked": { + "lastModified": 1729474676, + "narHash": "sha256-m9cnP77ntsE0oHTzgqfcKod0+5vX/poYP3O3T0ScdVI=", + "ref": "refs/heads/main", + "rev": "558c12035e8c7ec81c07701e2d20ffe37dff84e8", + "revCount": 370, + "type": "git", + "url": "https://git.punkfairie.net/punkfairie/rose-pine-nix" + }, + "original": { + "type": "git", + "url": "https://git.punkfairie.net/punkfairie/rose-pine-nix" } }, "rust-analyzer-src": { diff --git a/home/default.nix b/home/default.nix index 6a18ab1..9d1e8dc 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,5 +1,9 @@ -{ system, pkgs, inputs, ... }: { + system, + pkgs, + inputs, + ... +}: { home.username = "marley"; home.homeDirectory = "/home/marley"; @@ -7,12 +11,16 @@ nix.package = pkgs.nix; # Enable flakes. - nix.settings.experimental-features = [ "nix-command" "flakes" ]; + nix.settings.experimental-features = ["nix-command" "flakes"]; home.packages = [ inputs.alejandra.defaultPackage.${system} ]; + imports = [ + ./bat + ]; + # This value determines the Home Manager release that your configuration is # compatible with. This helps avoid breakage when a new Home Manager release # introduces backwards incompatible changes.