From 00b706095dad2bf169d36bf0fcdb50a8ff1fb5f5 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Tue, 20 Sep 2022 16:12:48 +0200 Subject: Flake: Remove dotfiles input Instead we use it directly. This removes a lot of hassle + limitations with flake inputs from files --- hosts/phobos/home.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hosts/phobos') diff --git a/hosts/phobos/home.nix b/hosts/phobos/home.nix index b437abc..8b70ddb 100644 --- a/hosts/phobos/home.nix +++ b/hosts/phobos/home.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, inputs, user, hostname, location, secrets, ... }: +{ config, lib, pkgs, inputs, user, hostname, location, secrets, dotfiles, ... }: { home.packages = with pkgs; [ minecraft @@ -41,8 +41,8 @@ ''; "sxhkd/sxhkdrc".text = - builtins.readFile "${inputs.dotfiles}/sxhkd/xmonad" + - builtins.readFile "${inputs.dotfiles}/sxhkd/base" + + builtins.readFile "${dotfiles}/sxhkd/xmonad" + + builtins.readFile "${dotfiles}/sxhkd/base" + '' #enter and leave game mode -- cgit 1.4.1