summaryrefslogtreecommitdiff
path: root/hm/shell
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
committeradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
commitc1d9af57156f3c95590d9a12c394ee064df9696e (patch)
tree7e515761590c510c30329ef8548c7d84a8e95aaa /hm/shell
parent791bc419b6dac7c70951981ef6b34cdf85828470 (diff)
added disko config for laptop, added storage and memory modules
Diffstat (limited to 'hm/shell')
-rw-r--r--hm/shell/cli.nix6
-rw-r--r--hm/shell/fish.nix5
-rw-r--r--hm/shell/foot.nix5
-rw-r--r--hm/shell/starship.nix5
4 files changed, 8 insertions, 13 deletions
diff --git a/hm/shell/cli.nix b/hm/shell/cli.nix
index 222b002..60e78db 100644
--- a/hm/shell/cli.nix
+++ b/hm/shell/cli.nix
@@ -1,10 +1,9 @@
{ config, lib, pkgs, ... }:
let
- cfg = config.szpont.hm.shell.cli;
+ cfg = config.hm.shell.cli;
in
{
- options.szpont.hm.shell.cli.enable = lib.mkEnableOption "modern cli tools";
-
+ options.hm.shell.cli.enable = lib.mkEnableOption "modern cli tools";
config = lib.mkIf cfg.enable {
programs.zoxide.enable = true;
programs.zoxide.options = [ "--cmd cd" ];
@@ -24,7 +23,6 @@ in
programs.fastfetch.enable = true;
home.packages = with pkgs; [
- gdu
file
mediainfo
chafa
diff --git a/hm/shell/fish.nix b/hm/shell/fish.nix
index 644eadc..b2e349a 100644
--- a/hm/shell/fish.nix
+++ b/hm/shell/fish.nix
@@ -1,10 +1,9 @@
{ config, lib, pkgs, ... }:
let
- cfg = config.szpont.hm.shell.fish;
+ cfg = config.hm.shell.fish;
in
{
- options.szpont.hm.shell.fish.enable = lib.mkEnableOption "enables fish shell";
-
+ options.hm.shell.fish.enable = lib.mkEnableOption "enables fish shell";
config = lib.mkIf cfg.enable {
programs.fish = {
enable = true;
diff --git a/hm/shell/foot.nix b/hm/shell/foot.nix
index 9847399..ecd345a 100644
--- a/hm/shell/foot.nix
+++ b/hm/shell/foot.nix
@@ -1,6 +1,6 @@
{ pkgs, lib, config, ... }:
let
- cfg = config.szpont.hm.shell.foot;
+ cfg = config.hm.shell.foot;
footTheme = pkgs.fetchurl {
url = "https://codeberg.org/dnkl/foot/raw/branch/master/themes/gruvbox-dark";
@@ -8,7 +8,7 @@ let
};
in
{
- options.szpont.hm.shell.foot = {
+ options.hm.shell.foot = {
enable = lib.mkEnableOption "foot terminal emulator";
fontSize = lib.mkOption {
type = lib.types.int;
@@ -16,7 +16,6 @@ in
description = "Font size for the foot terminal";
};
};
-
config = lib.mkIf cfg.enable {
programs.foot = {
enable = true;
diff --git a/hm/shell/starship.nix b/hm/shell/starship.nix
index 4996bdc..657ff5c 100644
--- a/hm/shell/starship.nix
+++ b/hm/shell/starship.nix
@@ -1,10 +1,9 @@
{ config, lib, ... }:
let
- cfg = config.szpont.hm.shell.starship;
+ cfg = config.hm.shell.starship;
in
{
- options.szpont.hm.shell.starship.enable = lib.mkEnableOption "Starship prompt";
-
+ options.hm.shell.starship.enable = lib.mkEnableOption "Starship prompt";
config = lib.mkIf cfg.enable {
programs.starship = {
enable = true;