fix starlite paths

This commit is contained in:
2025-01-11 22:25:49 +00:00
parent ed2d9c57f8
commit b1d59bbb9e
5 changed files with 12 additions and 8 deletions

View File

@@ -12,7 +12,7 @@
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
environment.systemPackages = with pkgs; environment.systemPackages = with pkgs;
[ ] ++ (with kdePackages; [ [ maliit-keyboard ] ++ (with kdePackages; [
sddm-kcm sddm-kcm
plasma-disks plasma-disks
partitionmanager partitionmanager

View File

@@ -17,14 +17,12 @@
nixosConfigurations.tuxedo = nixpkgs.lib.nixosSystem { nixosConfigurations.tuxedo = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
./configuration/base.nix
./tuxedo/configuration.nix ./tuxedo/configuration.nix
]; ];
}; };
nixosConfigurations.starlite = nixpkgs.lib.nixosSystem { nixosConfigurations.starlite = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
./configuration/base.nix
./starlite/configuration.nix ./starlite/configuration.nix
]; ];
}; };

View File

@@ -7,6 +7,7 @@
{ {
imports = imports =
[ [
../configuration/base.nix
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
inputs.disko.nixosModules.default inputs.disko.nixosModules.default
@@ -15,6 +16,8 @@
../modules/laptop.nix ../modules/laptop.nix
]; ];
networking.hostName = "starlite"; # Define your hostname.
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
users.users.worble = { users.users.worble = {
initialPassword = "password"; initialPassword = "password";

View File

@@ -2,10 +2,10 @@
{ {
imports = [ imports = [
../../home-manager/fonts.nix ../home-manager/fonts.nix
../../home-manager/terminal.nix ../home-manager/terminal.nix
../../home-manager/firefox/firefox.nix ../home-manager/firefox/firefox.nix
../../home-manager/development/vscode.nix ../home-manager/development/vscode.nix
]; ];
terminal.nixUpdateLocation = "/home/worble/Projects/nixos#starlite"; terminal.nixUpdateLocation = "/home/worble/Projects/nixos#starlite";

View File

@@ -7,6 +7,7 @@
{ {
imports = imports =
[ [
../configuration/base.nix
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
inputs.disko.nixosModules.default inputs.disko.nixosModules.default
@@ -17,6 +18,8 @@
../modules/gaming.nix ../modules/gaming.nix
]; ];
networking.hostName = "tuxedo"; # Define your hostname.
fileSystems."/mnt/HDD1" = { fileSystems."/mnt/HDD1" = {
#device = "/dev/disk/by-uuid/35763dc3-c736-4714-ade7-40bf49ad50dd"; #device = "/dev/disk/by-uuid/35763dc3-c736-4714-ade7-40bf49ad50dd";
fsType = "ext4"; fsType = "ext4";