From 118254ebccbf7414872998cf956f9b586f734386 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Sat, 9 Mar 2024 21:53:19 +0530 Subject: update --- machines/x/configuration.nix | 2 +- modules/core/global.nix | 16 ++++++++++++++++ modules/global.nix | 16 ---------------- 3 files changed, 17 insertions(+), 17 deletions(-) create mode 100644 modules/core/global.nix delete mode 100644 modules/global.nix diff --git a/machines/x/configuration.nix b/machines/x/configuration.nix index 7aae93d..10af0bc 100644 --- a/machines/x/configuration.nix +++ b/machines/x/configuration.nix @@ -5,7 +5,7 @@ ./hardware-configuration.nix inputs.home-manager.nixosModules.default ] ++ (map (path: ../../modules/${path}) [ - "global.nix" + "core/global.nix" "core/audio.nix" "core/bluetooth.nix" "core/fonts.nix" diff --git a/modules/core/global.nix b/modules/core/global.nix new file mode 100644 index 0000000..fffe8ab --- /dev/null +++ b/modules/core/global.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: + +{ + nix.settings = { + experimental-features = [ "nix-command" "flakes" ]; + auto-optimise-store = true; + }; + + time.timeZone = "Asia/Kolkata"; + + networking.networkmanager.enable = true; + + security.rtkit.enable = true; + + system.stateVersion = "23.11"; +} diff --git a/modules/global.nix b/modules/global.nix deleted file mode 100644 index fffe8ab..0000000 --- a/modules/global.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ pkgs, ... }: - -{ - nix.settings = { - experimental-features = [ "nix-command" "flakes" ]; - auto-optimise-store = true; - }; - - time.timeZone = "Asia/Kolkata"; - - networking.networkmanager.enable = true; - - security.rtkit.enable = true; - - system.stateVersion = "23.11"; -} -- cgit v1.2.3