simplify
This commit is contained in:
@@ -1,50 +0,0 @@
|
|||||||
{
|
|
||||||
pkgs,
|
|
||||||
inputs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
|
||||||
./kitty
|
|
||||||
./foot
|
|
||||||
./firefox
|
|
||||||
./neovim
|
|
||||||
./mako
|
|
||||||
];
|
|
||||||
config = {
|
|
||||||
home-manager.users.cnst = {pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
# APPLICATIONS
|
|
||||||
alacritty
|
|
||||||
keepassxc
|
|
||||||
qbittorrent
|
|
||||||
ranger
|
|
||||||
webcord
|
|
||||||
calcurse
|
|
||||||
xfce.thunar
|
|
||||||
|
|
||||||
# UTILITY
|
|
||||||
wl-clipboard
|
|
||||||
xfce.thunar-volman
|
|
||||||
xfce.thunar-archive-plugin
|
|
||||||
gnome.file-roller
|
|
||||||
pamixer
|
|
||||||
pavucontrol
|
|
||||||
virt-manager
|
|
||||||
fastfetch
|
|
||||||
waybar
|
|
||||||
nwg-look
|
|
||||||
thefuck
|
|
||||||
gnome.adwaita-icon-theme
|
|
||||||
|
|
||||||
# NETWORK
|
|
||||||
wireguard-tools
|
|
||||||
networkmanagerapplet
|
|
||||||
wpa_supplicant
|
|
||||||
|
|
||||||
# SYSTEM
|
|
||||||
btop
|
|
||||||
htop
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -9,19 +9,19 @@
|
|||||||
}: {
|
}: {
|
||||||
# You can import other home-manager modules here
|
# You can import other home-manager modules here
|
||||||
imports = [
|
imports = [
|
||||||
../core/adam.nix
|
../../core/adam.nix
|
||||||
../extra/adam.nix
|
../../extra/adam.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs = {
|
nix = {
|
||||||
# You can add overlays here
|
package = lib.mkDefault pkgs.nix;
|
||||||
overlays = [];
|
settings = {
|
||||||
# Configure your nixpkgs instance
|
experimental-features = [
|
||||||
config = {
|
"nix-command"
|
||||||
# Disable if you don't want unfree packages
|
"flakes"
|
||||||
allowUnfree = true;
|
"ca-derivations"
|
||||||
# Workaround for https://github.com/nix-community/home-manager/issues/2942
|
];
|
||||||
allowUnfreePredicate = _: true;
|
warn-dirty = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -13,15 +13,15 @@
|
|||||||
../../extra/cnst.nix
|
../../extra/cnst.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs = {
|
nix = {
|
||||||
# You can add overlays here
|
package = lib.mkDefault pkgs.nix;
|
||||||
overlays = [];
|
settings = {
|
||||||
# Configure your nixpkgs instance
|
experimental-features = [
|
||||||
config = {
|
"nix-command"
|
||||||
# Disable if you don't want unfree packages
|
"flakes"
|
||||||
allowUnfree = true;
|
"ca-derivations"
|
||||||
# Workaround for https://github.com/nix-community/home-manager/issues/2942
|
];
|
||||||
allowUnfreePredicate = _: true;
|
warn-dirty = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user