System : Remove home manager remains.

This commit is contained in:
Dmitry Voronin 2024-02-13 23:35:44 +03:00
parent 3e30c650c2
commit 527de61cf6
3 changed files with 2 additions and 59 deletions

View file

@ -1,11 +1,9 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, home-manager } @inputs: {
outputs = { self, nixpkgs } @inputs: {
# Constant values.
nixosModules.const = {
hashedPassword = "$y$j9T$oqCB16i5E2t1t/HAWaFd5.$tTaHtAcifXaDVpTcRv.yH2/eWKxKE9xM8KcqXHfHrD7"; # Use `mkpasswd`.
@ -17,7 +15,6 @@
./module/common/Bootloader.nix
./module/common/Distrobox.nix
./module/common/Firewall.nix
./module/common/HomeManager.nix
./module/common/Kernel.nix
./module/common/Locale.nix
./module/common/Network.nix

View file

@ -1,9 +0,0 @@
{ inputs, ... }:
{
imports = [
inputs.home-manager.nixosModules.home-manager
];
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}

View file

@ -10,49 +10,4 @@
extraGroups = [ "networkmanager" ];
packages = with pkgs; [ ];
};
#home-manager.users.voronind = {
# home.stateVersion = specialArgs.const.stateVersion;
# # Firefox.
# programs.firefox = {
# enable = true;
# profiles.voronind = {
# path = "/home/voronind/.config/firefox/";
# bookmarks = [
# {
# name = "";
# toolbar = true;
# bookmarks = [ # TODO: Create namelessBookmark function.
# {
# url = "https://home.voronind.com/";
# name = "";
# } {
# url = "https://music.yandex.ru/";
# name = "";
# } {
# url = "https://mail.fsight.ru/";
# name = "";
# } {
# url = "https://support.fsight.ru/";
# name = "";
# } {
# url = "";
# name = "";
# } {
# url = "";
# name = "";
# } {
# url = "";
# name = "";
# } {
# url = "";
# name = "";
# }
# ];
# }
# ];
# };
# };
#};
}