Fix some bad paths
This commit is contained in:
parent
000c3ac2dc
commit
fd928f0b66
|
@ -52,7 +52,7 @@ in {
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
openssh.authorizedKeys.keys = import ../../auth/authorized_keys.nix;
|
openssh.authorizedKeys.keys = import ../../auth/authorized_keys.nix;
|
||||||
};
|
};
|
||||||
home-manager.users.elitherl = import ./home.nix;
|
home-manager.users.xenia = import ./home.nix;
|
||||||
|
|
||||||
services.greetd = {
|
services.greetd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -5,10 +5,10 @@
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
inputs.hyprland.homeManagerModules.default
|
inputs.hyprland.homeManagerModules.default
|
||||||
./home/personal.nix
|
../../home/personal.nix
|
||||||
./home/desktop/hyprland
|
../../home/desktop/hyprland
|
||||||
./home/desktop/waybar/main.nix
|
../../home/desktop/waybar
|
||||||
./home/gui
|
../../home/gui
|
||||||
];
|
];
|
||||||
home = {
|
home = {
|
||||||
username = "xenia";
|
username = "xenia";
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
inputs,
|
inputs,
|
||||||
common,
|
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [inputs.home-manager.nixosModules.home-manager];
|
imports = [inputs.home-manager.nixosModules.home-manager];
|
||||||
|
@ -101,7 +100,7 @@
|
||||||
useUserPackages = false;
|
useUserPackages = false;
|
||||||
extraSpecialArgs = {inputs = inputs;};
|
extraSpecialArgs = {inputs = inputs;};
|
||||||
users.root = {
|
users.root = {
|
||||||
imports = [common.home.env];
|
# imports = [common.home.env];
|
||||||
home = {
|
home = {
|
||||||
username = "root";
|
username = "root";
|
||||||
homeDirectory = "/root";
|
homeDirectory = "/root";
|
||||||
|
|
Loading…
Reference in a new issue