Testing
This commit is contained in:
parent
8bd0ccc93d
commit
9d6ee59233
9 changed files with 10 additions and 15 deletions
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, system, ... }: {
|
||||
{ pkgs, ... }: {
|
||||
# List packages installed in system profile
|
||||
environment.systemPackages = with pkgs; [
|
||||
unzip # Better unzip packages
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ inputs, lib, pkgs, hostname, stateVersion, username, desktop, system, ... }: {
|
||||
{ inputs, lib, hostname, username, desktop, ... }: {
|
||||
imports = [
|
||||
# Modules
|
||||
inputs.disko.nixosModules.disko
|
||||
|
@ -11,7 +11,6 @@
|
|||
./common/services/tailscale.nix
|
||||
./common/services/gnupg-agent.nix
|
||||
./common/services/opensnitch.nix
|
||||
./common/services/geoclue.nix
|
||||
|
||||
# Software
|
||||
./common/software/cli/clean-hm.nix
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
../../common/services/podman.nix
|
||||
../../common/services/tailscale-autoconnect.nix
|
||||
../../common/modules/builder.nix
|
||||
../../common/services/geoclue.nix
|
||||
];
|
||||
|
||||
#### TEMPORARY TODO ####
|
||||
|
@ -37,10 +38,6 @@
|
|||
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "Europe/Warsaw";
|
||||
services.automatic-timezoned.enable = true;
|
||||
|
||||
# Set the networking hostname:
|
||||
networking.hostName = "nixos-desktop";
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
# ../../common/modules/yubikey-auth.nix
|
||||
../../common/modules/builder.nix
|
||||
../../common/services/podman.nix
|
||||
../../common/services/geoclue.nix
|
||||
];
|
||||
|
||||
hardware.bluetooth.enable = true; # enables support for Bluetooth
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{ config, lib, pkgs, modulesPath, desktop, username, ... }: {
|
||||
{ lib, ... }: {
|
||||
boot = {
|
||||
initrd.kernelModules = [ ];
|
||||
kernelModules = [ "iptable_nat" "iptable_filter" "xt_nat" ];
|
||||
extraModulePackages = [ ];
|
||||
};
|
||||
|
||||
time.timeZone = "Asia/Tokyo";
|
||||
time.timeZone = "Europe/UTC";
|
||||
|
||||
networking = {
|
||||
hostName = "nixos-linode-img";
|
||||
|
@ -13,4 +13,4 @@
|
|||
enableIPv6 = lib.mkForce false;
|
||||
firewall.allowedTCPPorts = [ 22 ];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }: {
|
||||
{ ... }: {
|
||||
services.cron = {
|
||||
enable = true;
|
||||
systemCronJobs = [
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
./disks.nix
|
||||
../../common/modules/boot.nix
|
||||
../../common/services/tailscale-autoconnect.nix
|
||||
../../common/services/geoclue.nix
|
||||
];
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"electron-27.3.11"
|
||||
|
@ -19,8 +20,6 @@
|
|||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
hardware.bluetooth.enable = true; # enables support for Bluetooth
|
||||
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
||||
# Set your time zone.
|
||||
time.timeZone = "Asia/Tokyo";
|
||||
# Set the networking hostname:
|
||||
networking.hostName = hostname;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ inputs, lib, pkgs, hostname, stateVersion, username, desktop, system, ... }: {
|
||||
{ inputs, lib, hostname, username, desktop, ... }: {
|
||||
imports = [
|
||||
# Modules
|
||||
inputs.disko.nixosModules.disko
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
./common/services/tailscale.nix
|
||||
./common/services/promtail.nix
|
||||
./common/services/telegraf.nix
|
||||
./common/services/geoclue.nix
|
||||
|
||||
# Software
|
||||
./common/software/cli/clean-hm.nix
|
||||
|
|
Loading…
Reference in a new issue