mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-19 01:21:39 +01:00
formatting
This commit is contained in:
parent
9e4582d351
commit
68d67965f5
2 changed files with 179 additions and 177 deletions
|
@ -11,6 +11,7 @@
|
|||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/thinkpad/configuration.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
[
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
|
@ -15,7 +16,7 @@
|
|||
networking.hostName = "thinkpad"; # Define your hostname.
|
||||
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
||||
networking.firewall = {
|
||||
allowedUDPPorts = [51820];
|
||||
allowedUDPPorts = [ 51820 ];
|
||||
checkReversePath = false;
|
||||
};
|
||||
|
||||
|
@ -75,17 +76,17 @@
|
|||
# Define a user account.
|
||||
users.users.rouven = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" "video" "network" "libvirtd"];
|
||||
extraGroups = [ "wheel" "video" "network" "libvirtd" ];
|
||||
};
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
((vim_configurable.override { }).customize{
|
||||
((vim_configurable.override { }).customize {
|
||||
name = "vim";
|
||||
vimrcConfig.packages.myplugins = with pkgs.vimPlugins; {
|
||||
start = [ vim-nix vim-lastplace ];
|
||||
opt = [];
|
||||
opt = [ ];
|
||||
};
|
||||
vimrcConfig.customRC = ''
|
||||
|
||||
|
|
Loading…
Reference in a new issue