From 15704de81b6a70408e8de33a435f24465b8757fc Mon Sep 17 00:00:00 2001 From: roxwize Date: Sat, 30 Nov 2024 22:44:05 -0500 Subject: [PATCH] fix shit --- nixos/home.nix | 35 +++++++++++++++--------------- nixos/hosts/qemu/configuration.nix | 2 +- 2 files changed, 18 insertions(+), 19 deletions(-) diff --git a/nixos/home.nix b/nixos/home.nix index fd7d944..81b9fb6 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -1,12 +1,11 @@ { pkgs, ... }: let home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz"; - plasma-manager = builtins.fetchTarball "https://github.com/nix-community/plasma-manager/archive/trunk.tar.gz"; in { imports = [ "${home-manager}/nixos" - "${plasma-manager}/modules" +# "${plasma-manager}/modules" ]; home-manager.users.rae = { @@ -18,21 +17,21 @@ in userName = "roxwize"; userEmail = "rae@roxwize.xyz"; }; - plasma = { - enable = true; - panels = [ - { - location = "top"; - height = 32; - widgets = [ - "org.kde.plasma.kickoff" - "org.kde.plasma.icontasks" - "org.kde.plasma.marginsseparator" - "org.kde.plasma.digitalclock" - ]; - } - ]; - }; +# plasma = { +# enable = true; +# panels = [ +# { +# location = "top"; +# height = 32; +# widgets = [ +# "org.kde.plasma.kickoff" +# "org.kde.plasma.icontasks" +# "org.kde.plasma.marginsseparator" +# "org.kde.plasma.digitalclock" +# ]; +# } +# ]; +# }; }; }; -}; +} diff --git a/nixos/hosts/qemu/configuration.nix b/nixos/hosts/qemu/configuration.nix index 654330b..7f241d5 100644 --- a/nixos/hosts/qemu/configuration.nix +++ b/nixos/hosts/qemu/configuration.nix @@ -2,7 +2,7 @@ { imports = [ ./hardware-configuration.nix - ./home.nix + ../../home.nix ]; boot.loader = {