feat(home): Install bat

Rose Pine works!!!!!!!!
This commit is contained in:
punkfairie 2024-10-20 19:17:56 -07:00
parent 6ec016d345
commit e1738b4b2e
2 changed files with 33 additions and 9 deletions

View file

@ -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": {

View file

@ -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.