Fix indentation :)
This commit is contained in:
parent
0f87c01fdc
commit
79f9cb89b6
5
.editorconfig
Normal file
5
.editorconfig
Normal file
@ -0,0 +1,5 @@
|
||||
root=true
|
||||
|
||||
[*]
|
||||
indent_style: "tab"
|
||||
indent_size: "2"
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
allowUnfree = true;
|
||||
allowUnfree = true;
|
||||
}
|
||||
|
@ -1,22 +1,22 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../modules/home-manager.nix
|
||||
../../modules/dev.nix
|
||||
../../modules/fonts.nix
|
||||
../../modules/git.nix
|
||||
../../modules/git_nixos.nix
|
||||
../../modules/gnome.nix
|
||||
../../modules/vscode.nix
|
||||
../../modules/zsh.nix
|
||||
];
|
||||
imports = [
|
||||
../../modules/home-manager.nix
|
||||
../../modules/dev.nix
|
||||
../../modules/fonts.nix
|
||||
../../modules/git.nix
|
||||
../../modules/git_nixos.nix
|
||||
../../modules/gnome.nix
|
||||
../../modules/vscode.nix
|
||||
../../modules/zsh.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
fortune
|
||||
google-chrome
|
||||
firefox
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
fortune
|
||||
google-chrome
|
||||
firefox
|
||||
];
|
||||
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
allowUnfree = true;
|
||||
allowUnfree = true;
|
||||
}
|
||||
|
@ -1,13 +1,13 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
../../modules/home-manager.nix
|
||||
../../modules/zsh.nix
|
||||
../../modules/dev.nix
|
||||
../../modules/fonts.nix
|
||||
];
|
||||
imports = [
|
||||
../../modules/home-manager.nix
|
||||
../../modules/zsh.nix
|
||||
../../modules/dev.nix
|
||||
../../modules/fonts.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
];
|
||||
}
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
allowUnfree = true;
|
||||
allowUnfree = true;
|
||||
}
|
||||
|
@ -1,20 +1,20 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../modules/home-manager.nix
|
||||
../../modules/git.nix
|
||||
../../modules/zsh.nix
|
||||
];
|
||||
imports = [
|
||||
../../modules/home-manager.nix
|
||||
../../modules/git.nix
|
||||
../../modules/zsh.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
pfetch
|
||||
fortune
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
pfetch
|
||||
fortune
|
||||
];
|
||||
|
||||
programs.zsh.shellAliases = {
|
||||
code = "/mnt/c/Program\\ Files/Microsoft\\ VS\\ Code/Code.exe";
|
||||
};
|
||||
programs.zsh.shellAliases = {
|
||||
code = "/mnt/c/Program\\ Files/Microsoft\\ VS\\ Code/Code.exe";
|
||||
};
|
||||
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
{ config, pkgs, libs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
nodePackages.yarn
|
||||
php
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
nodePackages.yarn
|
||||
php
|
||||
];
|
||||
}
|
@ -1,10 +1,10 @@
|
||||
{ config, pkgs, libs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
google-fonts
|
||||
inter
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
google-fonts
|
||||
inter
|
||||
];
|
||||
|
||||
fonts.fontconfig.enable = true;
|
||||
fonts.fontconfig.enable = true;
|
||||
}
|
@ -1,13 +1,13 @@
|
||||
{ config, pkgs, libs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
git-lfs
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
git-lfs
|
||||
];
|
||||
|
||||
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userEmail = "michaelhthomas@outlook.com";
|
||||
userName = "Michael Thomas";
|
||||
};
|
||||
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userEmail = "michaelhthomas@outlook.com";
|
||||
userName = "Michael Thomas";
|
||||
};
|
||||
}
|
@ -1,10 +1,10 @@
|
||||
{ config, pkgs, libs, ... }:
|
||||
{
|
||||
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
|
||||
programs.git = {
|
||||
package = pkgs.gitAndTools.gitFull;
|
||||
extraConfig = {
|
||||
credential.helper = "libsecret";
|
||||
};
|
||||
};
|
||||
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
|
||||
programs.git = {
|
||||
package = pkgs.gitAndTools.gitFull;
|
||||
extraConfig = {
|
||||
credential.helper = "libsecret";
|
||||
};
|
||||
};
|
||||
}
|
@ -1,34 +1,34 @@
|
||||
{ config, pkgs, libs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
gnomeExtensions.caffeine
|
||||
gnomeExtensions.paperwm
|
||||
gnomeExtensions.cleaner-overview
|
||||
gnomeExtensions.vertical-overview
|
||||
gnomeExtensions.disable-workspace-switch-animation-for-gnome-40
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
gnomeExtensions.caffeine
|
||||
gnomeExtensions.paperwm
|
||||
gnomeExtensions.cleaner-overview
|
||||
gnomeExtensions.vertical-overview
|
||||
gnomeExtensions.disable-workspace-switch-animation-for-gnome-40
|
||||
];
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
theme = {
|
||||
name = "Adwaita-dark";
|
||||
# package = pkgs.arc-theme;
|
||||
};
|
||||
font.name = "Inter 11";
|
||||
iconTheme = {
|
||||
name = "Papirus";
|
||||
package = pkgs.papirus-icon-theme;
|
||||
};
|
||||
};
|
||||
gtk = {
|
||||
enable = true;
|
||||
theme = {
|
||||
name = "Adwaita-dark";
|
||||
# package = pkgs.arc-theme;
|
||||
};
|
||||
font.name = "Inter 11";
|
||||
iconTheme = {
|
||||
name = "Papirus";
|
||||
package = pkgs.papirus-icon-theme;
|
||||
};
|
||||
};
|
||||
|
||||
programs.gnome-terminal = {
|
||||
enable = true;
|
||||
profile = {
|
||||
"5ddfe964-7ee6-4131-b449-26bdd97518f7" = {
|
||||
default = true;
|
||||
visibleName = "Michael";
|
||||
font = "FiraCode Nerd Font 12";
|
||||
};
|
||||
};
|
||||
};
|
||||
programs.gnome-terminal = {
|
||||
enable = true;
|
||||
profile = {
|
||||
"5ddfe964-7ee6-4131-b449-26bdd97518f7" = {
|
||||
default = true;
|
||||
visibleName = "Michael";
|
||||
font = "FiraCode Nerd Font 12";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -1,20 +1,20 @@
|
||||
{ config, pkgs, libs, ... }:
|
||||
{
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
home.username = builtins.getEnv "USER";
|
||||
home.homeDirectory = builtins.getEnv "HOME";
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
home.username = builtins.getEnv "USER";
|
||||
home.homeDirectory = builtins.getEnv "HOME";
|
||||
|
||||
# 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 = "21.03";
|
||||
# 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 = "21.03";
|
||||
}
|
||||
|
@ -1,15 +1,15 @@
|
||||
{ config, pkgs, libs, ... }:
|
||||
{
|
||||
programs = {
|
||||
vscode = {
|
||||
enable = true;
|
||||
extensions = [
|
||||
pkgs.vscode-extensions.bbenoist.Nix
|
||||
];
|
||||
# userSettings = {
|
||||
# "editor.fontFamily" = "'FiraCode Nerd Font', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'";
|
||||
# "editor.tabSize" = 2;
|
||||
# };
|
||||
};
|
||||
};
|
||||
programs = {
|
||||
vscode = {
|
||||
enable = true;
|
||||
extensions = [
|
||||
pkgs.vscode-extensions.bbenoist.Nix
|
||||
];
|
||||
# userSettings = {
|
||||
# "editor.fontFamily" = "'FiraCode Nerd Font', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'";
|
||||
# "editor.tabSize" = 2;
|
||||
# };
|
||||
};
|
||||
};
|
||||
}
|
@ -1,46 +1,46 @@
|
||||
{ config, pkgs, libs, ... }:
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
plugins = [
|
||||
{
|
||||
name = "zsh-nix-shell";
|
||||
file = "nix-shell.plugin.zsh";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "chisui";
|
||||
repo = "zsh-nix-shell";
|
||||
rev = "v0.1.0";
|
||||
sha256 = "0snhch9hfy83d4amkyxx33izvkhbwmindy0zjjk28hih1a9l2jmx";
|
||||
};
|
||||
}
|
||||
];
|
||||
prezto = {
|
||||
enable = true;
|
||||
pmodules = [
|
||||
"archive"
|
||||
"docker"
|
||||
"environment"
|
||||
"git"
|
||||
"terminal"
|
||||
"editor"
|
||||
"history"
|
||||
"directory"
|
||||
"spectrum"
|
||||
"utility"
|
||||
"completion"
|
||||
"command-not-found"
|
||||
"syntax-highlighting"
|
||||
"history-substring-search"
|
||||
"autosuggestions"
|
||||
"prompt"
|
||||
];
|
||||
};
|
||||
};
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
settings = {
|
||||
character.success_symbol = "[➜](green)";
|
||||
};
|
||||
};
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
plugins = [
|
||||
{
|
||||
name = "zsh-nix-shell";
|
||||
file = "nix-shell.plugin.zsh";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "chisui";
|
||||
repo = "zsh-nix-shell";
|
||||
rev = "v0.1.0";
|
||||
sha256 = "0snhch9hfy83d4amkyxx33izvkhbwmindy0zjjk28hih1a9l2jmx";
|
||||
};
|
||||
}
|
||||
];
|
||||
prezto = {
|
||||
enable = true;
|
||||
pmodules = [
|
||||
"archive"
|
||||
"docker"
|
||||
"environment"
|
||||
"git"
|
||||
"terminal"
|
||||
"editor"
|
||||
"history"
|
||||
"directory"
|
||||
"spectrum"
|
||||
"utility"
|
||||
"completion"
|
||||
"command-not-found"
|
||||
"syntax-highlighting"
|
||||
"history-substring-search"
|
||||
"autosuggestions"
|
||||
"prompt"
|
||||
];
|
||||
};
|
||||
};
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
settings = {
|
||||
character.success_symbol = "[➜](green)";
|
||||
};
|
||||
};
|
||||
}
|
@ -1,11 +1,11 @@
|
||||
self: super: {
|
||||
gnomeExtensions = super.gnomeExtensions // {
|
||||
paperwm = super.gnomeExtensions.paperwm.overrideDerivation (old: {
|
||||
version = "pre-40.0";
|
||||
src = builtins.fetchGit {
|
||||
url = https://github.com/paperwm/paperwm.git;
|
||||
ref = "next-release";
|
||||
};
|
||||
});
|
||||
};
|
||||
gnomeExtensions = super.gnomeExtensions // {
|
||||
paperwm = super.gnomeExtensions.paperwm.overrideDerivation (old: {
|
||||
version = "pre-40.0";
|
||||
src = builtins.fetchGit {
|
||||
url = https://github.com/paperwm/paperwm.git;
|
||||
ref = "next-release";
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
@ -1 +0,0 @@
|
||||
/etc/nixos/configuration.nix
|
@ -1 +0,0 @@
|
||||
/etc/nixos/hardware-configuration.nix
|
Loading…
x
Reference in New Issue
Block a user