desktop
This commit is contained in:
parent
fe6b9468b1
commit
3d03041c34
3 changed files with 20 additions and 22 deletions
36
flake.nix
36
flake.nix
|
|
@ -18,30 +18,24 @@
|
||||||
outputs = { self, nixpkgs, nixos-hardware, nixos-raspberrypi, home-manager, aagl, ... }@attrs:
|
outputs = { self, nixpkgs, nixos-hardware, nixos-raspberrypi, home-manager, aagl, ... }@attrs:
|
||||||
{
|
{
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
# NOcomputer = nixpkgs.lib.nixosSystem {
|
NOcomputer = nixpkgs.lib.nixosSystem {
|
||||||
# system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
# # config.allowUnfree = true;
|
specialArgs = attrs;
|
||||||
# modules = [
|
modules = [
|
||||||
# nixos-hardware.nixosModules.common-cpu-amd
|
nixos-hardware.nixosModules.common-cpu-amd
|
||||||
# nixos-hardware.nixosModules.common-gpu-nvidia-nonprime
|
nixos-hardware.nixosModules.common-gpu-nvidia-nonprime
|
||||||
# ./systems/BASED.nix
|
./systems/BASED.nix
|
||||||
# ./systems/NOcomputer.nix
|
./systems/NOcomputer.nix
|
||||||
# # ./users/tao.nix
|
./users/tao.nix
|
||||||
# home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
# {
|
./extras/uwuraid.nix
|
||||||
# home-manager.useGlobalPkgs = true;
|
./extras/dev.nix
|
||||||
# home-manager.useUserPackages = true;
|
./extras/gaming.nix
|
||||||
# home-manager.users.jdoe = import ./tao.nix;
|
];
|
||||||
# }
|
};
|
||||||
# ./extras/uwuraid.nix
|
|
||||||
# ./extras/dev.nix
|
|
||||||
# ./extras/gaming.nix
|
|
||||||
# ];
|
|
||||||
# };
|
|
||||||
NOlaptop = nixpkgs.lib.nixosSystem {
|
NOlaptop = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = attrs;
|
specialArgs = attrs;
|
||||||
# config.allowUnfree = true;
|
|
||||||
modules = [
|
modules = [
|
||||||
nixos-hardware.nixosModules.common-cpu-intel
|
nixos-hardware.nixosModules.common-cpu-intel
|
||||||
# inputs.nixos-hardware.nixosModules.framework
|
# inputs.nixos-hardware.nixosModules.framework
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
display-messages = true;
|
display-messages = true;
|
||||||
display-inlay-hints = true;
|
display-inlay-hints = true;
|
||||||
};
|
};
|
||||||
|
soft-wrap.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
languages = {
|
languages = {
|
||||||
|
|
@ -35,6 +36,10 @@
|
||||||
command = "clang-format";
|
command = "clang-format";
|
||||||
args = [ "--style=file:/home/tao/Templates/clang-format" ];
|
args = [ "--style=file:/home/tao/Templates/clang-format" ];
|
||||||
};
|
};
|
||||||
|
indent = {
|
||||||
|
tab-width = 8;
|
||||||
|
unit = "\t";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "nix";
|
name = "nix";
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
-- local wezterm = require 'wezterm'
|
|
||||||
return {
|
return {
|
||||||
font = wezterm.font 'FiraCode Nerd Font',
|
font = wezterm.font 'FiraCode Nerd Font',
|
||||||
color_scheme = "Dracula",
|
color_scheme = "Dracula",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue