fix(machines): make sabo work
This commit is contained in:
parent
8679ede69b
commit
a8687e89f1
1 changed files with 3 additions and 20 deletions
|
@ -1,18 +1,8 @@
|
||||||
# Edit this configuration file to define what should be installed on
|
{ pkgs, ... }:
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
|
||||||
# and in the NixOS manual (accessible by running ’nixos-help’).
|
|
||||||
|
|
||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
|
||||||
# Additional configuration from github/jeremiehuchet/nixos-macbookpro
|
|
||||||
boot.kernelParams = [
|
|
||||||
"hid_apple.fnmode=1"
|
|
||||||
"hid_apple.swap_fn_leftctrl=1"
|
|
||||||
"hid_apple.iso_layout=0"
|
|
||||||
];
|
|
||||||
boot.kernel.sysctl = {
|
boot.kernel.sysctl = {
|
||||||
"vm.swappiness" = 10;
|
"vm.swappiness" = 10;
|
||||||
};
|
};
|
||||||
|
@ -21,9 +11,9 @@
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.systemd-boot.consoleMode = "0";
|
boot.loader.systemd-boot.consoleMode = "0";
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
boot.loader.efi.efiSysMountPoint = "/boot";
|
||||||
|
|
||||||
networking.hostName = "luffy"; # Define your hostname.
|
networking.hostName = "sabo";
|
||||||
networking.extraHosts = ''
|
networking.extraHosts = ''
|
||||||
127.0.0.1 yeswiki.test hedgedoc.nixin.local
|
127.0.0.1 yeswiki.test hedgedoc.nixin.local
|
||||||
192.168.36.206 chmok.net
|
192.168.36.206 chmok.net
|
||||||
|
@ -93,12 +83,5 @@
|
||||||
decode = true; # for http access via https://127.0.0.1:8080/uri-res/N2R?urn:eris:...
|
decode = true; # for http access via https://127.0.0.1:8080/uri-res/N2R?urn:eris:...
|
||||||
package = pkgs.eris-go; # default package
|
package = pkgs.eris-go; # default package
|
||||||
};
|
};
|
||||||
# This value determines the NixOS release from which the default
|
|
||||||
# settings for stateful data, like file locations and database versions
|
|
||||||
# on your system were taken. It's perfectly fine and recommended to leave
|
|
||||||
# this value at the release version of the first install of this system.
|
|
||||||
# Before changing this value read the documentation for this option
|
|
||||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
||||||
system.stateVersion = "23.05"; # Did you read the comment?
|
system.stateVersion = "23.05"; # Did you read the comment?
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue