start adding neovim

This commit is contained in:
Kopatz
2023-11-04 12:50:08 +01:00
parent 6cd3e990ee
commit 9a813eb534
5 changed files with 74 additions and 19 deletions

View File

@@ -12,6 +12,7 @@ in{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./users/anon.nix
];
# Bootloader.
@@ -74,18 +75,7 @@ in{
#media-session.enable = true;
#};
#### Users and Packages ####
# Define a user account. Don't forget to set a password with passwd.
users.users.anon = {
isNormalUser = true;
description = "anon";
extraGroups = [ "networkmanager" "wheel" "docker" ];
packages = with pkgs; [
firefox
kate
# thunderbird
];
};
#### Packages ####
# Allow unfree packages
nixpkgs.config.allowUnfree = true;

34
server/flake.lock generated
View File

@@ -63,6 +63,27 @@
"type": "github"
}
},
"home-manager_2": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1695108154,
"narHash": "sha256-gSg7UTVtls2yO9lKtP0yb66XBHT1Fx5qZSZbGMpSn2c=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "07682fff75d41f18327a871088d20af2710d4744",
"type": "github"
},
"original": {
"owner": "nix-community",
"ref": "release-23.05",
"repo": "home-manager",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1677676435,
@@ -81,11 +102,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1698134075,
"narHash": "sha256-foCD+nuKzfh49bIoiCBur4+Fx1nozo+4C/6k8BYk4sg=",
"lastModified": 1698924604,
"narHash": "sha256-GCFbkl2tj8fEZBZCw3Tc0AkGo0v+YrQlohhEGJ/X4s0=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "8efd5d1e283604f75a808a20e6cde0ef313d07d4",
"rev": "fa804edfb7869c9fb230e174182a8a1a7e512c40",
"type": "github"
},
"original": {
@@ -96,11 +117,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1697957990,
"narHash": "sha256-LlyEQ4z1immaiZV+MQMUXM3KpNoRY/xZVm8mmN5j3yg=",
"lastModified": 1698942558,
"narHash": "sha256-/UmnB+mEd6Eg3mJBrAgqRcyZX//RSjHphcCO7Ig9Bpk=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "b3ddf9649fdac7db15aeea95cb3114c13594d265",
"rev": "621f51253edffa1d6f08d5fce4f08614c852d17e",
"type": "github"
},
"original": {
@@ -113,6 +134,7 @@
"root": {
"inputs": {
"agenix": "agenix",
"home-manager": "home-manager_2",
"nixpkgs": "nixpkgs_2",
"nixpkgs-unstable": "nixpkgs-unstable"
}

View File

@@ -5,8 +5,12 @@
agenix.url = "github:ryantm/agenix";
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/release-23.05";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nixpkgs-unstable, agenix }@inputs:
outputs = { self, nixpkgs, nixpkgs-unstable, agenix, home-manager }@inputs:
let
system = "x86_64-linux";
overlay-unstable = final: prev: {
@@ -45,6 +49,7 @@
./modules/paperless.nix
#./modules/dyndns.nix i think ddclient is deprecated
#./modules/home-assistant.nix idk dont like this
home-manager.nixosModules.home-manager
agenix.nixosModules.default
];
specialArgs = { inherit inputs; };

24
server/users/anon.nix Normal file
View File

@@ -0,0 +1,24 @@
{ pkgs, inputs, ... }:
{
imports = [ ./home-manager/nvim.nix ];
home-manager = {
useGlobalPkgs = true;
extraSpecialArgs = {
inherit inputs;
headless = false;
};
useUserPackages = true;
users.anon = {
home.stateVersion = "23.05";
};
};
users.users.anon = {
isNormalUser = true;
description = "anon";
extraGroups = [ "networkmanager" "wheel" "docker" ];
packages = with pkgs; [
firefox
];
};
}

View File

@@ -0,0 +1,14 @@
{
home-manager.users.anon = { pkgs, ...}: {
programs.neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [
(nvim-treesitter.withAllGrammars)
];
extraPackages = with pkgs;
[];
extraConfig = ''
'';
};
};
}