Compare commits

..

3 Commits

Author SHA1 Message Date
mandlm abdc7a81c2
chore: nix flake update 2023-06-14 08:33:07 +02:00
mandlm 7007bef003
feat: mount docker volume 2023-06-14 08:32:48 +02:00
mandlm 27d728440d
feat: use unstable neovim 2023-06-14 08:32:33 +02:00
3 changed files with 16 additions and 10 deletions

View File

@ -8,11 +8,11 @@
"utils": "utils" "utils": "utils"
}, },
"locked": { "locked": {
"lastModified": 1681092193, "lastModified": 1685325875,
"narHash": "sha256-JerCqqOqbT2tBnXQW4EqwFl0hHnuZp21rIQ6lu/N4rI=", "narHash": "sha256-tevlLIMPeVNNYPd9UgjHApAUoFAnw9iohqUyj+LPp88=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "f9edbedaf015013eb35f8caacbe0c9666bbc16af", "rev": "b372d7f8d5518aaba8a4058a453957460481afbc",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -24,11 +24,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1681091990, "lastModified": 1686476475,
"narHash": "sha256-ifIzhksUBZKp5WgCuoVhDY32qaEplXp7khzrB6zkaFc=", "narHash": "sha256-W9yUePvCSDghn+YUXewuodyPxt+kJl/a7zdY4Q6r4MU=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "ea96b4af6148114421fda90df33cf236ff5ecf1d", "rev": "eef86b8a942913a828b9ef13722835f359deef29",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -40,11 +40,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1681036984, "lastModified": 1686501370,
"narHash": "sha256-AbScJXshYzbeUKHh+Y3OICc3iAtr+NqJ3Xb81GW+ptU=", "narHash": "sha256-G0WuM9fqTPRc2URKP9Lgi5nhZMqsfHGrdEbrLvAPJcg=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "fd531dee22c9a3d4336cc2da39e8dd905e8f3de4", "rev": "75a5ebf473cd60148ba9aec0d219f72e5cf52519",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -77,7 +77,7 @@ in
programs = { programs = {
neovim = { neovim = {
enable = true; enable = true;
# package = pkgs.unstable.neovim; package = pkgs.unstable.neovim-unwrapped;
plugins = with pkgs.unstable.vimPlugins; [ plugins = with pkgs.unstable.vimPlugins; [
# theme # theme
nvim-solarized-lua nvim-solarized-lua

View File

@ -36,6 +36,12 @@
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/var/lib/docker" =
{
device = "/dev/disk/by-uuid/1f8dae67-1640-4688-ac86-b0e6f5095d6e";
fsType = "ext4";
};
swapDevices = swapDevices =
[{ device = "/dev/disk/by-uuid/b90199d6-05e8-4994-bf9d-7b07f10d583e"; }]; [{ device = "/dev/disk/by-uuid/b90199d6-05e8-4994-bf9d-7b07f10d583e"; }];