summaryrefslogtreecommitdiff
path: root/modules/nixos/environment.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-17 21:22:14 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-17 21:24:35 +0100
commit1fdbb44df1c3b8c0bab9e36cee3e8167e102efc3 (patch)
tree210b87b2addd1cc16f06f5646276215841a30622 /modules/nixos/environment.nix
parent262ad5ace2500d97ee3015aee7655f5893801153 (diff)
add filtron and rss-bridge modules
Diffstat (limited to 'modules/nixos/environment.nix')
-rw-r--r--modules/nixos/environment.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/nixos/environment.nix b/modules/nixos/environment.nix
deleted file mode 100644
index 5c84037..0000000
--- a/modules/nixos/environment.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-let cfg = config.personal.environment;
-in {
- options.personal.environment = {
- enable = lib.mkEnableOption "basic environment";
- locale.enable = lib.mkEnableOption "French locale";
- };
-
- config = lib.mkIf cfg.enable (lib.mkMerge [
- {
- environment.systemPackages = with pkgs; [
- vim
- gitMinimal
- busybox
- coreutils
- ];
- }
- (lib.mkIf cfg.locale.enable {
- time.timeZone = "Europe/Paris";
- i18n = {
- defaultLocale = "fr_FR.utf8";
- extraLocaleSettings.LANG = "en_US.utf8";
- };
- console = {
- font = "Lat2-Terminus16";
- keyMap = config.personal.hardware.keyboard.keyMap;
- };
- })
- ]);
-}