Compare commits

..

No commits in common. "e8c2ecc4fa5bea287986619669fd3ed70b5ddbf7" and "c4035d0e8bf0d66298d6753d52cae9962167f8ff" have entirely different histories.

4 changed files with 5 additions and 45 deletions

View File

@ -2,9 +2,9 @@
{
programs.neovim = {
enable = false;
defaultEditor = false;
vimAlias = false;
enable = true;
defaultEditor = true;
vimAlias = true;
coc = {
enable = true;
};

View File

@ -11,8 +11,6 @@
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 = [
{

View File

@ -21,24 +21,6 @@
"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,
@ -56,22 +38,6 @@
}
},
"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=",
@ -89,9 +55,8 @@
"root": {
"inputs": {
"home-manager": "home-manager",
"iceshrimp": "iceshrimp",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2"
"nixpkgs": "nixpkgs"
}
}
},

View File

@ -7,15 +7,12 @@
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, iceshrimp, nixos-hardware, ... }@inputs:
outputs = { self, nixpkgs, home-manager, nixos-hardware, ... }@inputs:
let
system = "x86_64-linux";
currentSystem = system;