mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 08:51:54 -05:00
home-manager: removed common.nix, split gnome.nix into separate file
This commit is contained in:
parent
7b1991b2aa
commit
af4ac64135
15
home/aly.nix
15
home/aly.nix
|
@ -2,32 +2,27 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./common.nix
|
||||
./gnome.nix
|
||||
./shell.nix
|
||||
];
|
||||
|
||||
# TODO please change the username & home directory to your own
|
||||
home.username = "aly";
|
||||
home.homeDirectory = "/home/aly";
|
||||
|
||||
services.syncthing.enable = true;
|
||||
home.stateVersion = "23.11";
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
# Packages that should be installed to the user profile.
|
||||
home.packages = with pkgs; [
|
||||
# warp-terminal
|
||||
# backblaze-b2
|
||||
curl
|
||||
discord
|
||||
gh
|
||||
git
|
||||
github-desktop
|
||||
obsidian
|
||||
syncthing
|
||||
vscode
|
||||
wget
|
||||
nixfmt
|
||||
];
|
||||
|
||||
services.syncthing.enable = true;
|
||||
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -37,16 +37,4 @@
|
|||
uris = ["qemu:///system"];
|
||||
};
|
||||
};
|
||||
# This value determines the home Manager release that your
|
||||
# configuration is compatible with. This helps avoid breakage
|
||||
# when a new home Manager release introduces backwards
|
||||
# incompatible changes.
|
||||
#
|
||||
# You can update home Manager without changing this value. See
|
||||
# the home Manager release notes for a list of state version
|
||||
# changes in each release.
|
||||
home.stateVersion = "23.11";
|
||||
|
||||
# Let home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
}
|
|
@ -1,6 +1,16 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# backblaze-b2
|
||||
curl
|
||||
gh
|
||||
git
|
||||
wget
|
||||
nixfmt
|
||||
];
|
||||
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
|
@ -13,21 +23,21 @@
|
|||
enable = true;
|
||||
extraPackages = ( epkgs: (with epkgs; [
|
||||
better-defaults
|
||||
markdown-mode
|
||||
nix-mode
|
||||
org
|
||||
org-bullets
|
||||
org-journal
|
||||
org-roam
|
||||
nix-mode
|
||||
treemacs
|
||||
treemacs-tab-bar
|
||||
treemacs-projectile
|
||||
ox-pandoc
|
||||
projectile
|
||||
python
|
||||
treemacs
|
||||
treemacs-projectile
|
||||
treemacs-tab-bar
|
||||
use-package
|
||||
yaml
|
||||
yaml-mode
|
||||
markdown-mode
|
||||
ox-pandoc
|
||||
use-package
|
||||
python
|
||||
])
|
||||
);
|
||||
package = pkgs.emacs-nox;
|
||||
|
|
Loading…
Reference in a new issue