summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/ebisu/nara/default.nix4
-rw-r--r--home/ebisu/nara/programs/analysis.nix10
-rw-r--r--home/ebisu/nara/programs/default.nix2
-rw-r--r--home/ebisu/nara/programs/development.nix1
-rw-r--r--home/ebisu/nara/programs/fastfetch.nix37
5 files changed, 1 insertions, 53 deletions
diff --git a/home/ebisu/nara/default.nix b/home/ebisu/nara/default.nix
index 1085ca3..3058dfa 100644
--- a/home/ebisu/nara/default.nix
+++ b/home/ebisu/nara/default.nix
@@ -1,9 +1,7 @@
-{ self, ... }:
+{ ... }:
{
home-manager.users.ebisu = {
imports = [
- "${self}/home/ebisu/base"
- ./files.nix
./programs
];
diff --git a/home/ebisu/nara/programs/analysis.nix b/home/ebisu/nara/programs/analysis.nix
deleted file mode 100644
index 98d1657..0000000
--- a/home/ebisu/nara/programs/analysis.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{ pkgs, ... }:
-{
- home.packages = with pkgs; [
- nixfmt-rfc-style
- shfmt
- shellcheck
- mdformat
- treefmt
- ];
-}
diff --git a/home/ebisu/nara/programs/default.nix b/home/ebisu/nara/programs/default.nix
index f64bfb5..3ad7a6e 100644
--- a/home/ebisu/nara/programs/default.nix
+++ b/home/ebisu/nara/programs/default.nix
@@ -1,7 +1,5 @@
{
imports = [
- ./analysis.nix
./development.nix
- ./fastfetch.nix
];
}
diff --git a/home/ebisu/nara/programs/development.nix b/home/ebisu/nara/programs/development.nix
index c8ecadc..aead5f8 100644
--- a/home/ebisu/nara/programs/development.nix
+++ b/home/ebisu/nara/programs/development.nix
@@ -4,6 +4,5 @@
nixd
nil
nixos-rebuild
- git-crypt
];
}
diff --git a/home/ebisu/nara/programs/fastfetch.nix b/home/ebisu/nara/programs/fastfetch.nix
deleted file mode 100644
index 64b38f2..0000000
--- a/home/ebisu/nara/programs/fastfetch.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- home.file.".config/fastfetch/config.jsonc".text = ''
- {
- "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
- "modules": [
- "title",
- "break",
- "os",
- "host",
- "kernel",
- "uptime",
- "packages",
- "shell",
- "de",
- "wm",
- "wmtheme",
- "theme",
- "icons",
- "font",
- "cursor",
- "terminal",
- "terminalfont",
- "cpu",
- "gpu",
- "memory",
- "swap",
- "disk",
- "localip",
- "battery",
- "poweradapter",
- "break",
- "colors"
- ]
- }
-
- '';
-}