aboutsummaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/configuration.nix b/configuration.nix
deleted file mode 100644
index 6622ec1..0000000
--- a/configuration.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ pkgs, ... }:
-{
- imports = [
- ./modules/hardware
- ./modules/users
- ./modules/network
- ./modules/media
- ./modules/dashboard
- ./modules/storage
- ./modules/notifications
- ./modules/monitoring
- ];
-
- environment.systemPackages = with pkgs; [
- bottom
- mtm
- neovim
- lf
- util-linux
- dig
- ];
-
- time.timeZone = "Asia/Kolkata";
- i18n.defaultLocale = "en_GB.UTF-8";
-
- nix.settings = {
- experimental-features = [ "nix-command" "flakes" ];
- auto-optimise-store = true;
- };
- nix.gc = {
- automatic = true;
- dates = "weekly";
- };
- nixpkgs.config.allowUnfree = true;
-
- system.stateVersion = "25.05";
-}