NixVim 👍
parent
3bc89f6e75
commit
fc1fa7b2b8
|
@ -4,8 +4,8 @@
|
|||
# Enable the X11 windowing system.
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
layout = "nl";
|
||||
xkbVariant = "us";
|
||||
xkb.variant = "us";
|
||||
xkb.layout = "nl";
|
||||
libinput.enable = true;
|
||||
displayManager.gdm.enable = true;
|
||||
desktopManager = {
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
vimAlias = true;
|
||||
enable = false;
|
||||
defaultEditor = false;
|
||||
vimAlias = false;
|
||||
coc = {
|
||||
enable = true;
|
||||
};
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
ll = "ls -l";
|
||||
please = "sudo";
|
||||
update = "sudo nixos-rebuild switch --flake /etc/nixos/#laptop";
|
||||
vim = "nix run git+https://git.saragerretsen.nl/Hertog/HertogVim";
|
||||
vimUpdate = "nix run git+https://git.saragerretsen.nl/Hertog/HertogVim";
|
||||
};
|
||||
plugins = [
|
||||
{
|
||||
|
|
37
flake.lock
37
flake.lock
|
@ -21,6 +21,24 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"iceshrimp": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1707094376,
|
||||
"narHash": "sha256-qkXIsdaJNNzinxi4AAUvPwbXnpMv96JyZqFHNAz9Ev8=",
|
||||
"ref": "refs/heads/dev",
|
||||
"rev": "73e013fa7a25459a2bbe19afbb69d839304f6b97",
|
||||
"revCount": 31,
|
||||
"type": "git",
|
||||
"url": "https://iceshrimp.dev/iceshrimp/packaging"
|
||||
},
|
||||
"original": {
|
||||
"type": "git",
|
||||
"url": "https://iceshrimp.dev/iceshrimp/packaging"
|
||||
}
|
||||
},
|
||||
"nixos-hardware": {
|
||||
"locked": {
|
||||
"lastModified": 1702453208,
|
||||
|
@ -38,6 +56,22 @@
|
|||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1700108881,
|
||||
"narHash": "sha256-+Lqybl8kj0+nD/IlAWPPG/RDTa47gff9nbei0u7BntE=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "7414e9ee0b3e9903c24d3379f577a417f0aae5f1",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixpkgs-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1706913249,
|
||||
"narHash": "sha256-x3M7iV++CsvRXI1fpyFPduGELUckZEhSv0XWnUopAG8=",
|
||||
|
@ -55,8 +89,9 @@
|
|||
"root": {
|
||||
"inputs": {
|
||||
"home-manager": "home-manager",
|
||||
"iceshrimp": "iceshrimp",
|
||||
"nixos-hardware": "nixos-hardware",
|
||||
"nixpkgs": "nixpkgs"
|
||||
"nixpkgs": "nixpkgs_2"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -7,12 +7,15 @@
|
|||
url = "github:nix-community/home-manager/master";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
iceshrimp = {
|
||||
url = "git+https://iceshrimp.dev/iceshrimp/packaging";
|
||||
};
|
||||
nixos-hardware = {
|
||||
url = "github:NixOS/nixos-hardware/master";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, nixos-hardware, ... }@inputs:
|
||||
outputs = { self, nixpkgs, home-manager, iceshrimp, nixos-hardware, ... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
currentSystem = system;
|
||||
|
|
Loading…
Reference in New Issue