From 2d7d419cdd019d52ed8950d60ab728e5eb0fb6bd Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 20:27:22 -0600 Subject: added desktop config to flake.nix --- flake.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/flake.nix b/flake.nix index 50a89d7..8c468c3 100644 --- a/flake.nix +++ b/flake.nix @@ -57,6 +57,32 @@ # nix.registry.nixpkgs.flake = nixpkgs; ]; }; + + khad = nixpkgs.lib.nixosSystem { + modules [ + ./machines/khad/configuration.nix + + ./machines/zenbook/hardware-configuration.nix + + ./modules/user-profiles/defin.nix + + home-manager.nixosModules.home-manager { + home-manager.useGlobalpkgs = true; + home-manager.useUserPackages = true; + home-manager.users.defin = import ./home-manager/home.nix; + } + .modules/hyprland.nix + + .modules/bluetooth.nix + .modules/environment.nix + .modules/kde-connect.nix + .modules/nix-common.nix + .modules/services.nix + .modules/steam.nix + .modules/sway.nix + .modules/system-packages.nix + ]; + }; }; }; } -- cgit v1.2.3 From e4e1084e45ebc0b18c109fa325e2850f7a150392 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 20:28:12 -0600 Subject: added base desktop config --- machines/khad/configuration.nix | 122 +++++++++++++++++++++++++++++++ machines/khad/hardware-configuration.nix | 50 +++++++++++++ 2 files changed, 172 insertions(+) create mode 100644 machines/khad/configuration.nix create mode 100644 machines/khad/hardware-configuration.nix diff --git a/machines/khad/configuration.nix b/machines/khad/configuration.nix new file mode 100644 index 0000000..73e29dd --- /dev/null +++ b/machines/khad/configuration.nix @@ -0,0 +1,122 @@ +# Edit this configuration file to define what should be installed on +# your system. Help is available in the configuration.nix(5) man page +# and in the NixOS manual (accessible by running `nixos-help`). + +{ config, pkgs, ... }: + +{ + imports = + [ # Include the results of the hardware scan. + ./hardware-configuration.nix + ]; + + # Use the systemd-boot EFI boot loader. + # boot.loader.grub.enable = true; + # boot.loader.grub.efiSupport = true; + # boot.loader.grub.devices = [ + # "/dev/sda" + # ]; + # boot.loader.grub.theme = pkgs.nixos-grub2-theme; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + boot.loader.systemd-boot.graceful = true; + + networking.hostName = "khad"; # Define your hostname. + # Pick only one of the below networking options. + # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. + networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. + + # Set your time zone. + time.timeZone = "US/Mountain"; + + # Configure network proxy if necessary + # networking.proxy.default = "http://user:password@proxy:port/"; + # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; + + # Select internationalisation properties. + # i18n.defaultLocale = "en_US.UTF-8"; + # console = { + # font = "Lat2-Terminus16"; + # keyMap = "us"; + # useXkbConfig = true; # use xkbOptions in tty. + # }; + + # Enable the X11 windowing system. + services.xserver.enable = true; + + + # Enable the Plasma 5 Desktop Environment. + services.xserver.displayManager.sddm.enable = true; + services.xserver.desktopManager.plasma5.enable = true; + + + # Configure keymap in X11 + # services.xserver.layout = "us"; + # services.xserver.xkbOptions = "eurosign:e,caps:escape"; + + # Enable CUPS to print documents. + # services.printing.enable = true; + + # Enable sound. + sound.enable = true; + # hardware.pulseaudio.enable = true; + + # Enable touchpad support (enabled default in most desktopManager). + # services.xserver.libinput.enable = true; + + # Define a user account. Don't forget to set a password with ‘passwd’. + # users.users.defin= { + # isNormalUser = true; + # description = "Devin finlinson"; + # extraGroups = [ "wheel" "builders" "video" "input"]; # Enable ‘sudo’ for the user. + # shell = pkgs.nushell; + # hashedPassword = "$6$UljPNAdxZ22lP3Bc$8VaEAacZxtXM3Zji2IA7Jf5fXs9pFnAVQff1d8IbfFOKCvjibceyopOAjRXa8lXtpOSJgPW1OO1dzOspqhWnz0"; + # packages = with pkgs; [ + # firefox + # nushell + # tree + # ]; + # }; + + # List packages installed in system profile. To search, run: + # $ nix search wget + environment.systemPackages = with pkgs; [ + # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + helix + wget + ]; + + # Some programs need SUID wrappers, can be configured further or are + # started in user sessions. + programs.mtr.enable = true; + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; + + # List services that you want to enable: + + # Enable the OpenSSH daemon. + # services.openssh.enable = true; + + # Open ports in the firewall. + # networking.firewall.allowedTCPPorts = [ ... ]; + # networking.firewall.allowedUDPPorts = [ ... ]; + # Or disable the firewall altogether. + # networking.firewall.enable = false; + + # Copy the NixOS configuration file and link it from the resulting system + # (/run/current-system/configuration.nix). This is useful in case you + # accidentally delete configuration.nix. + # system.copySystemConfiguration = true; + + # This value determines the NixOS release from which the default + # settings for stateful data, like file locations and database versions + # on your system were taken. It's perfectly fine and recommended to leave + # this value at the release version of the first install of this system. + # Before changing this value read the documentation for this option + # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). + system.stateVersion = "23.05"; # Did you read the comment? + +} + diff --git a/machines/khad/hardware-configuration.nix b/machines/khad/hardware-configuration.nix new file mode 100644 index 0000000..d1e49e9 --- /dev/null +++ b/machines/khad/hardware-configuration.nix @@ -0,0 +1,50 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/d7025289-0e65-4ff8-a774-1a8a7b104858"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/0873-40C7"; + fsType = "vfat"; + }; + + fileSystems."/home" = + { device = "/dev/disk/by-uuid/9aa90dd0-4123-4caf-ac6e-8a299dda3ad4"; + fsType = "ext4"; + }; + + fileSystems."/home/devinf/Drives" = + { device = "/dev/disk/by-uuid/ba4e233d-d31a-4e5a-9054-0241bd58ba8e"; + fsType = "ext4"; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/74384a53-3895-4c6b-ba89-ff7ff82323a4"; } + ]; + + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking + # (the default) this is the recommended approach. When using systemd-networkd it's + # still possible to use this option, but it's recommended to use it in conjunction + # with explicit per-interface declarations with `networking.interfaces..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.eno1.useDHCP = lib.mkDefault true; + # networking.interfaces.enp0s20u4.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +} -- cgit v1.2.3 From 34f99957e3632ab408eafaf66f6f16afea1542e7 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 20:31:10 -0600 Subject: removed unecessary options from khad --- machines/khad/configuration.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/machines/khad/configuration.nix b/machines/khad/configuration.nix index 73e29dd..e60e949 100644 --- a/machines/khad/configuration.nix +++ b/machines/khad/configuration.nix @@ -42,12 +42,12 @@ # }; # Enable the X11 windowing system. - services.xserver.enable = true; + # services.xserver.enable = true; # Enable the Plasma 5 Desktop Environment. - services.xserver.displayManager.sddm.enable = true; - services.xserver.desktopManager.plasma5.enable = true; + # services.xserver.displayManager.sddm.enable = true; + # services.xserver.desktopManager.plasma5.enable = true; # Configure keymap in X11 @@ -80,14 +80,15 @@ # List packages installed in system profile. To search, run: # $ nix search wget - environment.systemPackages = with pkgs; [ - # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. - helix - wget + # environment.systemPackages = with pkgs; [ + # # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + # helix + # wget ]; # Some programs need SUID wrappers, can be configured further or are # started in user sessions. + programs.light.enable = true; programs.mtr.enable = true; programs.gnupg.agent = { enable = true; -- cgit v1.2.3 From bd8b7075dbc8e0c562d981cfdc47c016b2b6c87f Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 20:34:32 -0600 Subject: fixed typo --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8c468c3..7716746 100644 --- a/flake.nix +++ b/flake.nix @@ -59,7 +59,7 @@ }; khad = nixpkgs.lib.nixosSystem { - modules [ + modules = [ ./machines/khad/configuration.nix ./machines/zenbook/hardware-configuration.nix -- cgit v1.2.3 From 30280b0882bc38412c7723d56ed950d6e326f825 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 20:36:13 -0600 Subject: fixed another typo --- machines/khad/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/khad/configuration.nix b/machines/khad/configuration.nix index e60e949..cabc361 100644 --- a/machines/khad/configuration.nix +++ b/machines/khad/configuration.nix @@ -84,7 +84,7 @@ # # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # helix # wget - ]; + # ]; # Some programs need SUID wrappers, can be configured further or are # started in user sessions. -- cgit v1.2.3 From a3381e46f54ab0af5e2648354e03556c134818d8 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 20:36:59 -0600 Subject: fixed flake typo --- flake.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index 7716746..a9571bb 100644 --- a/flake.nix +++ b/flake.nix @@ -71,16 +71,16 @@ home-manager.useUserPackages = true; home-manager.users.defin = import ./home-manager/home.nix; } - .modules/hyprland.nix - - .modules/bluetooth.nix - .modules/environment.nix - .modules/kde-connect.nix - .modules/nix-common.nix - .modules/services.nix - .modules/steam.nix - .modules/sway.nix - .modules/system-packages.nix + ./modules/hyprland.nix + + ./modules/bluetooth.nix + ./modules/environment.nix + ./modules/kde-connect.nix + ./modules/nix-common.nix + ./modules/services.nix + ./modules/steam.nix + ./modules/sway.nix + ./modules/system-packages.nix ]; }; }; -- cgit v1.2.3 From 2bbe5418e42ea40df2e0bfb90d5a1a69bd9f4d86 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 20:38:12 -0600 Subject: yet another typo --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index a9571bb..1514b6c 100644 --- a/flake.nix +++ b/flake.nix @@ -67,7 +67,7 @@ ./modules/user-profiles/defin.nix home-manager.nixosModules.home-manager { - home-manager.useGlobalpkgs = true; + home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.users.defin = import ./home-manager/home.nix; } -- cgit v1.2.3 From 8cafe6370120870f9b5965d42ff4ae29550ad759 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 20:41:44 -0600 Subject: fixed wrong hardware-config --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 1514b6c..7ea682f 100644 --- a/flake.nix +++ b/flake.nix @@ -62,7 +62,7 @@ modules = [ ./machines/khad/configuration.nix - ./machines/zenbook/hardware-configuration.nix + ./machines/khad/hardware-configuration.nix ./modules/user-profiles/defin.nix -- cgit v1.2.3 From 50cd2425ac59f126d9ce462231e2f18b60a06ed1 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 20:44:19 -0600 Subject: allow unfree --- machines/khad/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/machines/khad/configuration.nix b/machines/khad/configuration.nix index cabc361..3b1e98f 100644 --- a/machines/khad/configuration.nix +++ b/machines/khad/configuration.nix @@ -26,6 +26,12 @@ # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. + nixpkgs = { + # texlive.combined.scheme-medium; + system = "x84_64-linux"; + config.allowUnfree = true; + }; + # Set your time zone. time.timeZone = "US/Mountain"; -- cgit v1.2.3 From daaf7b4f9e0189de5a0da4c27d16e57d4dda5a8b Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 21:41:47 -0600 Subject: testing boot loader fix --- machines/khad/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/khad/configuration.nix b/machines/khad/configuration.nix index 3b1e98f..6f7e415 100644 --- a/machines/khad/configuration.nix +++ b/machines/khad/configuration.nix @@ -18,7 +18,7 @@ # ]; # boot.loader.grub.theme = pkgs.nixos-grub2-theme; boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + # boot.loader.efi.canTouchEfiVariables = true; boot.loader.systemd-boot.graceful = true; networking.hostName = "khad"; # Define your hostname. -- cgit v1.2.3 From 29eb8d377940bd5ad78e77a1106b0d0e1a021391 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 21:47:50 -0600 Subject: added root user config to flake --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 7ea682f..4a10d14 100644 --- a/flake.nix +++ b/flake.nix @@ -27,6 +27,7 @@ # Default users ./modules/user-profiles/defin.nix + ./modules/user-profiles/root.nix home-manager.nixosModules.home-manager { -- cgit v1.2.3 From 42c3986ed796e6825e8cd8a864da004c50eed6f3 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 21:56:03 -0600 Subject: hopefully the rebuild stops breaking --- modules/user-profiles/defin.nix | 2 +- modules/user-profiles/root.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/user-profiles/defin.nix b/modules/user-profiles/defin.nix index 36b3cbc..86152f6 100644 --- a/modules/user-profiles/defin.nix +++ b/modules/user-profiles/defin.nix @@ -21,5 +21,5 @@ }; # Allow to run nix - nix.settings.allowed-users = [ "defin" ]; + nix.settings.allowed-users = [ "defin" "root" ]; } \ No newline at end of file diff --git a/modules/user-profiles/root.nix b/modules/user-profiles/root.nix index 89f905c..ea299c0 100644 --- a/modules/user-profiles/root.nix +++ b/modules/user-profiles/root.nix @@ -16,5 +16,5 @@ }; # Allow to run nix - nix.settings.allowed-users = [ "root" ]; + # nix.settings.allowed-users = [ "root" ]; } -- cgit v1.2.3 From a933e77443bfa3d918b6e04339464d4ae41f86b2 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 22:27:22 -0600 Subject: moved an env config to configs enabled users for nix generated new hardware config to hopefully prevent emergency mode --- machines/khad/configuration.nix | 8 +++++--- machines/khad/hardware-configuration.nix | 8 ++++---- machines/zenbook/configuration.nix | 2 ++ modules/environment.nix | 2 +- modules/user-profiles/defin.nix | 2 +- modules/user-profiles/root.nix | 2 +- 6 files changed, 14 insertions(+), 10 deletions(-) diff --git a/machines/khad/configuration.nix b/machines/khad/configuration.nix index 6f7e415..abc703b 100644 --- a/machines/khad/configuration.nix +++ b/machines/khad/configuration.nix @@ -32,6 +32,8 @@ config.allowUnfree = true; }; + environment.shellInit = ''export NIXPATH="/nix/var/nix/profiles/per-user/$USER/channels:nixos-config=/etc/nixos/machines/khad/configuration.nix"''; + # Set your time zone. time.timeZone = "US/Mountain"; @@ -48,12 +50,12 @@ # }; # Enable the X11 windowing system. - # services.xserver.enable = true; + services.xserver.enable = true; # Enable the Plasma 5 Desktop Environment. - # services.xserver.displayManager.sddm.enable = true; - # services.xserver.desktopManager.plasma5.enable = true; + services.xserver.displayManager.sddm.enable = true; + services.xserver.desktopManager.plasma5.enable = true; # Configure keymap in X11 diff --git a/machines/khad/hardware-configuration.nix b/machines/khad/hardware-configuration.nix index d1e49e9..dc32bab 100644 --- a/machines/khad/hardware-configuration.nix +++ b/machines/khad/hardware-configuration.nix @@ -8,7 +8,7 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "sd_mod" "sr_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; @@ -19,7 +19,7 @@ }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/0873-40C7"; + { device = "/dev/disk/by-uuid/B741-9318"; fsType = "vfat"; }; @@ -28,13 +28,13 @@ fsType = "ext4"; }; - fileSystems."/home/devinf/Drives" = + fileSystems."/home/defin/Drives" = { device = "/dev/disk/by-uuid/ba4e233d-d31a-4e5a-9054-0241bd58ba8e"; fsType = "ext4"; }; swapDevices = - [ { device = "/dev/disk/by-uuid/74384a53-3895-4c6b-ba89-ff7ff82323a4"; } + [ { device = "/dev/disk/by-uuid/e75daaf1-d6c6-43c3-8a61-ff26b4304f71"; } ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking diff --git a/machines/zenbook/configuration.nix b/machines/zenbook/configuration.nix index cf55eed..77e7fe6 100644 --- a/machines/zenbook/configuration.nix +++ b/machines/zenbook/configuration.nix @@ -17,6 +17,8 @@ config.allowUnfree = true; }; + environment.shellInit = ''export NIXPATH="/nix/var/nix/profiles/per-user/$USER/channels:nixos-config=/etc/nixos/machines/zenbook/configuration.nix"''; + networking = { firewall = { # Open ports in the firewall. diff --git a/modules/environment.nix b/modules/environment.nix index 07bef00..6842a8c 100644 --- a/modules/environment.nix +++ b/modules/environment.nix @@ -1,7 +1,7 @@ { config, lib, ... }: { environment = { # include user channels in NIX_PATH - shellInit = ''export NIXPATH="/nix/var/nix/profiles/per-user/$USER/channels:nixos-config=/etc/nixos/machines/zenbook/configuration.nix"''; + # shellInit = ''export NIXPATH="/nix/var/nix/profiles/per-user/$USER/channels:nixos-config=/etc/nixos/machines/zenbook/configuration.nix"''; # List packages installed in system profile. To search, run: # $ nix search wget variables = { diff --git a/modules/user-profiles/defin.nix b/modules/user-profiles/defin.nix index 86152f6..36b3cbc 100644 --- a/modules/user-profiles/defin.nix +++ b/modules/user-profiles/defin.nix @@ -21,5 +21,5 @@ }; # Allow to run nix - nix.settings.allowed-users = [ "defin" "root" ]; + nix.settings.allowed-users = [ "defin" ]; } \ No newline at end of file diff --git a/modules/user-profiles/root.nix b/modules/user-profiles/root.nix index ea299c0..89f905c 100644 --- a/modules/user-profiles/root.nix +++ b/modules/user-profiles/root.nix @@ -16,5 +16,5 @@ }; # Allow to run nix - # nix.settings.allowed-users = [ "root" ]; + nix.settings.allowed-users = [ "root" ]; } -- cgit v1.2.3 From dddd3cb2679b10f16d9f651af106a88fbd21ba55 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Tue, 5 Sep 2023 09:05:13 -0600 Subject: removed reduntant lines --- machines/khad/configuration.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/machines/khad/configuration.nix b/machines/khad/configuration.nix index abc703b..e4f5c96 100644 --- a/machines/khad/configuration.nix +++ b/machines/khad/configuration.nix @@ -49,13 +49,13 @@ # useXkbConfig = true; # use xkbOptions in tty. # }; - # Enable the X11 windowing system. - services.xserver.enable = true; + # # Enable the X11 windowing system. + # services.xserver.enable = true; - # Enable the Plasma 5 Desktop Environment. - services.xserver.displayManager.sddm.enable = true; - services.xserver.desktopManager.plasma5.enable = true; + # # Enable the Plasma 5 Desktop Environment. + # services.xserver.displayManager.sddm.enable = true; + # services.xserver.desktopManager.plasma5.enable = true; # Configure keymap in X11 -- cgit v1.2.3 From a9774e697a50b19f7857de979294d8fd2bbbba48 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Tue, 5 Sep 2023 09:07:11 -0600 Subject: added helvum --- home-manager/home.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home-manager/home.nix b/home-manager/home.nix index 2e40074..8615859 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -45,6 +45,7 @@ yakuake pass btop + helvum mpv # unstable.yt-dlp yt-dlp -- cgit v1.2.3 From f23fc012326c4cb77569782fb54472cd25c0fb2a Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Tue, 5 Sep 2023 09:13:51 -0600 Subject: added lspci --- modules/system-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/system-packages.nix b/modules/system-packages.nix index eb86590..4eb36ba 100644 --- a/modules/system-packages.nix +++ b/modules/system-packages.nix @@ -51,6 +51,7 @@ in unzip git wl-clipboard + lspci #For hyprland waybar #For sway -- cgit v1.2.3 From 772702b5fae2cabfd0bc81031ba07090c848beb3 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Tue, 5 Sep 2023 09:18:04 -0600 Subject: added pciutils, removed lspci --- modules/system-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system-packages.nix b/modules/system-packages.nix index 4eb36ba..7580033 100644 --- a/modules/system-packages.nix +++ b/modules/system-packages.nix @@ -51,7 +51,7 @@ in unzip git wl-clipboard - lspci + pciutils #For hyprland waybar #For sway -- cgit v1.2.3 From 08f5c83ab9461727d1d31b2d035d2745e8b48c80 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Tue, 5 Sep 2023 09:23:11 -0600 Subject: added gpu drivers and opengl --- machines/khad/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/machines/khad/configuration.nix b/machines/khad/configuration.nix index e4f5c96..7a754cf 100644 --- a/machines/khad/configuration.nix +++ b/machines/khad/configuration.nix @@ -32,6 +32,8 @@ config.allowUnfree = true; }; + services.xserver.videoDrivers = [ "nvidia" ]; + hardware.opengl.driSupport32Bit = true; environment.shellInit = ''export NIXPATH="/nix/var/nix/profiles/per-user/$USER/channels:nixos-config=/etc/nixos/machines/khad/configuration.nix"''; # Set your time zone. -- cgit v1.2.3 From 4789ce8fdf454c39bdab69603bb888b2c1f18c68 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Wed, 6 Sep 2023 11:38:11 -0600 Subject: added lutris, removed steam-tui --- home-manager/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index 8615859..2fb2478 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -53,7 +53,7 @@ obsidian zettlr discord - steam-tui + lutris # texlive-combined-full # nushell starship -- cgit v1.2.3 From 6105aa49170769542aabb37a711ff95c159b3f41 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Thu, 14 Sep 2023 00:58:20 -0600 Subject: added lutris --- home-manager/home.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home-manager/home.nix b/home-manager/home.nix index 2fb2478..7ac9b12 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -47,6 +47,7 @@ btop helvum mpv + lutris # unstable.yt-dlp yt-dlp telegram-desktop -- cgit v1.2.3 From 0303f1dadfbaf13ec1a95b9b9e907cbb16281e9f Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Thu, 14 Sep 2023 01:05:42 -0600 Subject: added wine for lutris --- home-manager/home.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home-manager/home.nix b/home-manager/home.nix index 7ac9b12..191c25a 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -48,6 +48,7 @@ helvum mpv lutris + wine # unstable.yt-dlp yt-dlp telegram-desktop -- cgit v1.2.3 From 95697d59a2b69546f52e8590e2e363cd911d183c Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Thu, 14 Sep 2023 19:24:24 -0600 Subject: added element --- home-manager/home.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index 191c25a..206a113 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -53,7 +53,8 @@ yt-dlp telegram-desktop obsidian - zettlr + zettlr + element discord lutris # texlive-combined-full -- cgit v1.2.3 From b3ba57a6b9f8f70d78f1d97e4544f74dcf5b03d5 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Thu, 14 Sep 2023 19:27:28 -0600 Subject: used correct element --- home-manager/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index 206a113..6e74878 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -54,7 +54,7 @@ telegram-desktop obsidian zettlr - element + element-desktop discord lutris # texlive-combined-full -- cgit v1.2.3 From 5265ac12ec68637b725562e5762d464d57864617 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Sun, 17 Sep 2023 20:29:15 -0600 Subject: added helix theme, added heroic launcher --- home-manager/home.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index 6e74878..8ce8d5e 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -57,6 +57,7 @@ element-desktop discord lutris + heroic # texlive-combined-full # nushell starship @@ -132,10 +133,11 @@ }; }; - # helix = { - # enable = true; - # # defaultEditor = true; - # }; + helix = { + enable = true; + # defaultEditor = true; + settings.theme = "base16_transparent"; + }; # Let Home Manager install and manage itself. # home-manager.enable = true; }; -- cgit v1.2.3