remove home-manager and some old files
This commit is contained in:
@@ -4,7 +4,9 @@
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../graphical/configuration.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
./file.nix
|
||||
./pkgs.nix
|
||||
./services.nix
|
||||
];
|
||||
|
||||
networking.hostName = "darp8";
|
||||
@@ -60,15 +62,6 @@
|
||||
};
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
extraSpecialArgs = { inherit inputs; inherit cfg; };
|
||||
users = {
|
||||
"${cfg.username}" = import ./home.nix;
|
||||
};
|
||||
backupFileExtension = ".bak";
|
||||
};
|
||||
|
||||
# This option defines the first version of NixOS you have installed on this particular machine
|
||||
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
|
||||
# and migrated your data accordingly.
|
||||
|
||||
@@ -1,22 +1,16 @@
|
||||
{ cfg, config, context, pkgs, ... }:
|
||||
|
||||
let
|
||||
inherit (config.home) username homeDirectory;
|
||||
|
||||
mkSymlinkAttrs = import ../../utils/mkSymlinkAttrs.nix {
|
||||
inherit pkgs;
|
||||
inherit (cfg) context runtimeRoot;
|
||||
hm = config.lib; # same as: cfg.context.inputs.home-manager.lib.hm;
|
||||
};
|
||||
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
../graphical/file.nix # import shared configs
|
||||
];
|
||||
imports = [ ../graphical/file.nix ];
|
||||
|
||||
# Symlink per-host dotfiles
|
||||
home.file = mkSymlinkAttrs {
|
||||
systemd.user.tmpfiles.rules = mkSymlinkAttrs {
|
||||
".config/hypr/hypr-monitors.conf" = {
|
||||
source = ../../configs/hypr-darp8/hypr-monitors.conf;
|
||||
outOfStoreSymlink = true;
|
||||
|
||||
@@ -9,15 +9,11 @@
|
||||
];
|
||||
|
||||
# BEGIN PER-HOST PACKAGES
|
||||
home.packages = with pkgs; [
|
||||
users.users.liamm.packages = with pkgs; [
|
||||
android-studio
|
||||
genymotion
|
||||
praat
|
||||
mcpelauncher-ui-qt
|
||||
];
|
||||
|
||||
# BEGIN PER-HOST PROGRAMS
|
||||
programs = {
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user