From a98b53de9991167471e840ae3c18798c8d9fc1b7 Mon Sep 17 00:00:00 2001 From: andromeda Date: Fri, 1 May 2026 13:37:31 +0200 Subject: new conf --- guix/home-configuration.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 guix/home-configuration.scm (limited to 'guix') diff --git a/guix/home-configuration.scm b/guix/home-configuration.scm new file mode 100644 index 0000000..f2c0c9b --- /dev/null +++ b/guix/home-configuration.scm @@ -0,0 +1,40 @@ +(use-modules (gnu home) + (gnu packages) + (gnu services) + (guix gexp) + (gnu home services dotfiles) + (gnu home services shells)) + +(home-environment + (packages + (map specification->package + (list "acpi" + "alacritty" + "brightnessctl" + "btop" + "du-dust" + "emacs-no-x" + "fzf" + "fastfetch" + "gdb" + "git" + "grim" + "hello" + "jmtpfs" + "lsd" + "nasm" + "pciutils" + "ranger" + "ripgrep" + "slurp" + "tokei" + "tree" + "usbutils" + "wget" + "xxd" + "zoxide"))) + (services + (append (list (service home-dotfiles-service-type + (home-dotfiles-configuration + (directories '("../files"))))) + %base-home-services))) -- cgit v1.3