aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-18 12:04:07 -0400
committerRosa <rosaontheweb@proton.me>2026-03-18 12:04:07 -0400
commitcad9638875c04122b04d47242ddfc76e21e77029 (patch)
treed80077f45b7b0d7513b3af0dabe6d2d992c846b7 /common
parentce19b701046c064a1eb39098d8537b2c4964a86e (diff)
progress on sway configuration
Diffstat (limited to 'common')
-rw-r--r--common/core.nix41
-rw-r--r--common/region/na-east.nix5
2 files changed, 0 insertions, 46 deletions
diff --git a/common/core.nix b/common/core.nix
deleted file mode 100644
index 664239e..0000000
--- a/common/core.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ config, pkgs, ... }:
-{
- boot.loader = {
- efi.canTouchEfiVariables = true;
- systemd-boot = {
- enable = true;
- editor = false;
- memtest86.enable = true;
- };
-
- timeout = 1;
- };
-
- environment.systemPackages = with pkgs; [
- kakoune
- ];
-
- hardware.enableRedistributableFirmware = true;
- nix.settings.experimental-features = [
- "flakes"
- "nix-command"
- ];
-
- programs = {
- git = {
- enable = true;
- package = pkgs.gitMinimal;
- };
-
- nano.enable = false;
- zsh = {
- enable = true;
- setOptions = [ "HIST_IGNORE_ALL_DUPS" ];
- shellInit = ''
- PS1="%n@%m %~ %# "
- '';
- };
- };
-
- users.defaultUserShell = pkgs.zsh;
-}
diff --git a/common/region/na-east.nix b/common/region/na-east.nix
deleted file mode 100644
index 5446801..0000000
--- a/common/region/na-east.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{ config, lib, ... }:
-{
- i18n.defaultLocale = "en_CA.UTF-8";
- time.timeZone = lib.mkDefault "Canada/Eastern";
-}