remove heroic since it doesn't work, add the nextcloud symlinks to home manager
This commit is contained in:
parent
ca7885c9f2
commit
595ee09839
|
@ -1,4 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
# You can import other home-manager modules here
|
||||
imports = [
|
||||
# If you want to use modules your own flake exports (from modules/home-manager):
|
||||
|
@ -63,17 +67,38 @@
|
|||
allowUnfree = true;
|
||||
};
|
||||
};
|
||||
|
||||
home = {
|
||||
username = "lillian";
|
||||
homeDirectory = "/home/lillian";
|
||||
|
||||
file = {
|
||||
Music = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "/home/lillian/Nextcloud/Music";
|
||||
target = "Music";
|
||||
};
|
||||
Pictures = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "/home/lillian/Nextcloud/Pictures";
|
||||
target = "Pictures";
|
||||
};
|
||||
Scripts = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "/home/lillian/Nextcloud/Scripts";
|
||||
target = "Scripts";
|
||||
};
|
||||
Videos = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "/home/lillian/Nextcloud/Videos";
|
||||
target = "Videos";
|
||||
};
|
||||
Documents = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "/home/lillian/Nextcloud/Documents";
|
||||
target = "Documents";
|
||||
};
|
||||
};
|
||||
|
||||
# Add stuff for your user as you see fit:
|
||||
# programs.neovim.enable = true;
|
||||
# home.packages = with pkgs; [ steam ];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
packages = with pkgs; [
|
||||
# Coding:
|
||||
direnv
|
||||
git
|
||||
|
@ -135,6 +160,7 @@
|
|||
firefoxpwa
|
||||
ungoogled-chromium
|
||||
];
|
||||
};
|
||||
programs = {
|
||||
# vscode = {
|
||||
# enable = true;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
heroic
|
||||
# heroic
|
||||
r2modman
|
||||
ryujinx
|
||||
lutris
|
||||
|
|
|
@ -45,9 +45,9 @@
|
|||
navi.enable = true;
|
||||
yazi = {
|
||||
enable = true;
|
||||
package = pkgs.yazi.override {
|
||||
_7zz = pkgs._7zz.override {useUasm = true;};
|
||||
};
|
||||
# package = pkgs.yazi.override {
|
||||
# _7zz = pkgs._7zz.override {useUasm = true;};
|
||||
# };
|
||||
};
|
||||
};
|
||||
stylix.enable = true;
|
||||
|
|
Loading…
Reference in a new issue