This commit is contained in:
albert 2024-11-18 20:48:16 +01:00
parent 8bd0ccc93d
commit 9d6ee59233
Signed by: albert
GPG key ID: 3895DD267CA11BA9
9 changed files with 10 additions and 15 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, system, ... }: {
{ pkgs, ... }: {
# List packages installed in system profile
environment.systemPackages = with pkgs; [
unzip # Better unzip packages

View file

@ -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

View file

@ -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";

View file

@ -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

View file

@ -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";

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: {
{ ... }: {
services.cron = {
enable = true;
systemCronJobs = [

View file

@ -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;

View file

@ -1,4 +1,4 @@
{ inputs, lib, pkgs, hostname, stateVersion, username, desktop, system, ... }: {
{ inputs, lib, hostname, username, desktop, ... }: {
imports = [
# Modules
inputs.disko.nixosModules.disko

View file

@ -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