Compare commits
No commits in common. "bcd44db4372bc604d39187869be91fdb52d61ffc" and "0341da506781c898df7a4b152682aedb3daee856" have entirely different histories.
bcd44db437
...
0341da5067
4 changed files with 21 additions and 41 deletions
28
flake.lock
generated
28
flake.lock
generated
|
|
@ -101,15 +101,15 @@
|
|||
"base16-vim": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1716150083,
|
||||
"narHash": "sha256-ZMhnNmw34ogE5rJZrjRv5MtG3WaqKd60ds2VXvT6hEc=",
|
||||
"owner": "tinted-theming",
|
||||
"lastModified": 1663659192,
|
||||
"narHash": "sha256-uJvaYYDMXvoo0fhBZUhN8WBXeJ87SRgof6GEK2efFT0=",
|
||||
"owner": "chriskempson",
|
||||
"repo": "base16-vim",
|
||||
"rev": "6e955d704d046b0dc3e5c2d68a2a6eeffd2b5d3d",
|
||||
"rev": "3be3cd82cd31acfcab9a41bad853d9c68d30478d",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "tinted-theming",
|
||||
"owner": "chriskempson",
|
||||
"repo": "base16-vim",
|
||||
"type": "github"
|
||||
}
|
||||
|
|
@ -170,11 +170,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1718526747,
|
||||
"narHash": "sha256-sKrD/utGvmtQALvuDj4j0CT3AJXP1idOAq2p+27TpeE=",
|
||||
"lastModified": 1717931644,
|
||||
"narHash": "sha256-Sz8Wh9cAiD5FhL8UWvZxBfnvxETSCVZlqWSYWaCPyu0=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "0a7ffb28e5df5844d0e8039c9833d7075cdee792",
|
||||
"rev": "3d65009effd77cb0d6e7520b68b039836a7606cf",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -206,11 +206,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1718318537,
|
||||
"narHash": "sha256-4Zu0RYRcAY/VWuu6awwq4opuiD//ahpc2aFHg2CWqFY=",
|
||||
"lastModified": 1717786204,
|
||||
"narHash": "sha256-4q0s6m0GUcN7q+Y2DqD27iLvbcd1G50T2lv08kKxkSI=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "e9ee548d90ff586a6471b4ae80ae9cfcbceb3420",
|
||||
"rev": "051f920625ab5aabe37c920346e3e69d7d34400e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -258,11 +258,11 @@
|
|||
"nixpkgs": "nixpkgs_2"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1718546905,
|
||||
"narHash": "sha256-FmtNOW6Ng11TTgsXkQLqBcIE0j2SmlydHXu/DnWlS4k=",
|
||||
"lastModified": 1718292734,
|
||||
"narHash": "sha256-XAwxzCDfExqIj0PIjEpjt3eOzsosxOCLx6sQWHPSrSg=",
|
||||
"owner": "danth",
|
||||
"repo": "stylix",
|
||||
"rev": "80e8e1e2f613bdc8749461899f0959312eb4a54e",
|
||||
"rev": "73c6955b4572346cc10f43a459949fe646efbde0",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
|||
|
|
@ -119,11 +119,6 @@
|
|||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# Temporarily allow certain unsafe packages
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"electron-27.3.11" # 2024-06-16: EOL electron for logseq
|
||||
];
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
|||
|
|
@ -38,10 +38,6 @@
|
|||
btop
|
||||
fd # unnamed dependency for the fuzzy finder fzf
|
||||
lazygit
|
||||
eza # replacement for ls
|
||||
bat # replacement for cat
|
||||
ripgrep # search files for text/patterns
|
||||
entr # run cmd when file changes
|
||||
|
||||
# Network
|
||||
wireguard-go
|
||||
|
|
@ -119,12 +115,6 @@
|
|||
# Update the font cache
|
||||
fonts.fontconfig.enable = true;
|
||||
|
||||
# Zoxide - a replacement for ls
|
||||
programs.zoxide = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
|
||||
# SSH
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
|
|
@ -154,11 +144,6 @@
|
|||
shellAliases = {
|
||||
vi = "nvim";
|
||||
vim = "nvim";
|
||||
ls = "eza -g";
|
||||
ll = "eza -alhg";
|
||||
tree = "eza --tree";
|
||||
cat = "bat";
|
||||
cd = "z";
|
||||
};
|
||||
initExtra = ''
|
||||
setopt nonomatch # forward wildcard if no match
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue